-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run web tests before publishing release; updated convert_map, fixes #82…
…; also: - fixes bugs with Python 3 and url response decoding - make maps full height in latest iPython notebooks - update notebooks - run py.test web tests on Travis to make sure they work across python versions - website merge instructions - version 1.1.2
- Loading branch information
1 parent
8ebc221
commit cf08ba6
Showing
16 changed files
with
983 additions
and
866 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
git fetch escher | ||
git merge escher/1.1.2-fix --no-commit --no-ff | ||
source env/bin/activate | ||
python setup.py buildgh | ||
git add -A :/ | ||
gc -m"version 1.1.2" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
675 changes: 345 additions & 330 deletions
675
docs/notebooks/JavaScript development and offline maps.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = '1.1.1' | ||
__version__ = '1.1.2' | ||
__schema_version__ = '1-0-0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#! /usr/bin/env bash | ||
|
||
python setup.py test --pyonly | ||
|
||
if [ $? = "1" ]; then | ||
echo "Did not pass Python tests. Exiting." | ||
exit 1 | ||
fi | ||
|
||
python setup.py test --jsonly | ||
|
||
echo -n "Did the Jasmine tests pass? (y/n): " | ||
while true; do | ||
read character | ||
if [ $character = "n" ] ; then | ||
echo "Did not pass Jasmine tests. Exiting." | ||
exit 1 | ||
fi | ||
if [ $character = "y" ] ; then | ||
echo "Publishing." | ||
python setup.py sdist bdist upload | ||
exit $? | ||
fi | ||
echo -n "Did the Jasmine tests pass? Must enter 'y' or 'n': " | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters