Skip to content

Commit e25111c

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 778ce5c + 6bc71ab commit e25111c

69 files changed

Lines changed: 4246 additions & 4694 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 30 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,43 @@ language: python
22

33
sudo: false
44

5+
python:
6+
- 2.7
7+
- 3.4
8+
- 3.5
9+
510
env:
6-
- PYTHON="2.7"
7-
- PYTHON="3.4"
8-
- PYTHON="3.5"
11+
- TEST_TARGET=branca_release
12+
- TEST_TARGET=branca_latest
13+
- TEST_TARGET=coding_standards
914

1015
before_install:
1116
- wget http://bit.ly/miniconda -O miniconda.sh
1217
- bash miniconda.sh -b -p $HOME/miniconda
1318
- export PATH="$HOME/miniconda/bin:$PATH"
14-
- conda config --add channels ioos -f
1519
- conda update --yes --all
16-
- travis_retry conda create --yes -n test python=$PYTHON nomkl --file requirements.txt
17-
- source activate test
18-
- conda install --yes --file requirements-dev.txt;
19-
- pip install git+https://github.com/python-visualization/branca.git@befdf0bb29ecea488c79147fa1a851e15bfe5a10
20-
- if [[ "$PYTHON" == "3.4" ]]; then
21-
travis_retry conda install --yes nbconvert jupyter_client ipykernel;
22-
conda install --yes -c ioos geopandas;
23-
fi
24-
- if [[ "$PYTHON" != "3.5" ]]; then
25-
travis_retry conda install --yes mock ;
20+
- conda config --add channels conda-forge --force
21+
- conda create --yes -n TEST python=$TRAVIS_PYTHON_VERSION --file requirements.txt --file requirements-dev.txt
22+
- source activate TEST
23+
24+
- if [[ "$TRAVIS_PYTHON_VERSION" != "3.5" ]]; then
25+
conda install --yes mock ;
2626
fi
27-
- travis_retry pip install
27+
28+
# Test source distribution.
29+
install:
30+
- python setup.py sdist && version=$(python setup.py --version) && pushd dist && pip install folium-${version}.tar.gz && popd
2831

2932
script:
30-
- python setup.py test
31-
- find . -type f -name "*.py" ! -name 'conf.py' | xargs flake8 --max-line-length=100
33+
- if [[ $TEST_TARGET == 'branca_release' ]]; then
34+
python setup.py test ;
35+
fi
36+
37+
- if [[ $TEST_TARGET == 'branca_latest' ]]; then
38+
pip install git+https://github.com/python-visualization/branca.git ;
39+
python setup.py test ;
40+
fi
41+
42+
- if [[ $TEST_TARGET == 'coding_standards' ]]; then
43+
find . -type f -name "*.py" ! -name 'conf.py' | xargs flake8 --max-line-length=100 ;
44+
fi

CHANGES.txt

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
0.3.0
22
~~~~~
33

4-
- Add fullscreen plugin (sanga #437)
5-
- Add ColorLine object (bibmartin #449)
6-
- Add smooth_factor option to GeoJSON, TopoJSON and Choropleth (JamesGardiner #428)
7-
- Add options to fullscreen plugin (qingkaikong #468)
8-
- Add options to LayerControl (qingkaikong #473)
4+
- Added fullscreen plugin (sanga #437)
5+
- Added ColorLine object (bibmartin #449)
6+
- Added smooth_factor option to GeoJSON, TopoJSON and Choropleth (JamesGardiner #428)
7+
- Added options to fullscreen plugin (qingkaikong #468)
8+
- Added options to LayerControl (qingkaikong #473)
9+
- Added text path (talespaiva #451 and #474)
10+
- Update font-awesome to 4.6.3 (ocefpaf #478)
911

1012
Bug Fixes
1113

1214
- Fix MIME type (text/plain) is not executable (talespaiva #440)
15+
- Update Travis-CI testing to incorporate branca and fix notebook tests (ocefpaf #436)
1316

1417
0.2.1
1518
~~~~~

examples/CRS comparison.ipynb

Lines changed: 0 additions & 287 deletions
This file was deleted.

examples/CRS_comparison.ipynb

Lines changed: 268 additions & 0 deletions
Large diffs are not rendered by default.

examples/Colormaps.ipynb

Lines changed: 61 additions & 79 deletions
Large diffs are not rendered by default.

examples/Features.ipynb

Lines changed: 118 additions & 129 deletions
Large diffs are not rendered by default.

examples/GeoJSON and choropleth.ipynb

Lines changed: 0 additions & 879 deletions
This file was deleted.

examples/GeoJSON_and_choropleth.ipynb

Lines changed: 824 additions & 0 deletions
Large diffs are not rendered by default.

examples/GeoPandas.ipynb

Lines changed: 49 additions & 59 deletions
Large diffs are not rendered by default.

examples/ImageOverlay.ipynb

Lines changed: 90 additions & 75 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)