Skip to content

Commit d351abd

Browse files
committed
Merge pull request #217 from ocefpaf/fix_travis
Fix Travis-CI
2 parents 4315bd5 + d77151d commit d351abd

File tree

6 files changed

+143
-98
lines changed

6 files changed

+143
-98
lines changed

.travis.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,24 @@ language: python
33
sudo: false
44

55
env:
6-
- CONDA="python=2.7"
7-
- CONDA="python=3.3"
8-
- CONDA="python=3.4"
6+
- PYTHON="2.7"
7+
- PYTHON="3.3"
8+
- PYTHON="3.4"
9+
- PYTHON="3.5"
910

1011
before_install:
1112
- wget http://bit.ly/miniconda -O miniconda.sh
1213
- bash miniconda.sh -b -p $HOME/miniconda
1314
- export PATH="$HOME/miniconda/bin:$PATH"
15+
- conda config --add channels ioos -f
1416
- conda update --yes --all
15-
- travis_retry conda create --yes -n test $CONDA --file requirements.txt
17+
- travis_retry conda create --yes -n test python=$PYTHON --file requirements.txt
1618
- source activate test
17-
- travis_retry conda install --yes pip mock pytest pandas
18-
- travis_retry pip install vincent
19+
- travis_retry conda install --yes pytest pandas vincent
20+
- if [[ "$PYTHON" != "3.5" ]]; then
21+
travis_retry conda install --yes mock ;
22+
fi
23+
- travis_retry pip install
1924

2025
script:
2126
- python setup.py test
22-

CHANGES.txt

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,35 @@
1-
0.2.0
1+
0.2.0.dev
2+
~~~~~~~~~
3+
TODO
4+
5+
6+
0.1.6
7+
~~~~~
8+
- Added Image Overlay. (andrewgiessel b625613)
9+
- All popups can take a `popup_width` keyword to adjust the width in
10+
text/HTML (ocefpaf #157).
11+
- CAVEAT! Backwards incompatibly change: the keyword `width` in popups is now
12+
`popup_width` to avoid confusion with map `width`.
13+
14+
15+
0.1.5
216
~~~~~
3-
- Popups on lines. (themiurgo 97c0a02)
4-
- `fit_bounds` method. (themiurgo 713c292)
17+
- Popups on lines. (themiurgo #122)
18+
- Map auto bounds. (themiurgo #134)
519
- GeoJSON popup. (ocefpaf 7aad5e0)
620
- Added cartodb positron and dark_matter tiles (ocefpaf d4daee7)
721
- Forcing HTTPS when available. (ocefpaf c69ac89)
822
- Added Stamen Watercolor tiles. (ocefpaf 8c1f837)
9-
- Added Image Overlay. (andrewgiessel b625613)
10-
11-
Bug Fixes
12-
- popup width keyword is now consistent in all pop objects (ocefpaf e2c0310)
23+
- Added non-pixel width and height. (ocefpaf a87a449)
24+
- Default map size is defined as non-pixel and equal to 100% of the window.
25+
(ocefpaf dcaf575)
1326

1427
Bug Fixes
1528

1629
- Draw GeoJSON first. (ocefpaf d92bdbe)
30+
- Removed keyword unnecessary `popup_on`. (themiurgo 204d722)
31+
- Fixed MapQuest Open Aerial URL. (ocefpaf 5e787fa)
32+
1733

1834
0.1.4
1935
~~~~~
@@ -29,6 +45,7 @@ Bug Fixes
2945
- Fix #50 template not found on Windows OSes. (ocefpaf 101daee)
3046
- Fixed `add_wms_layer` py3k bug. (ocefpaf 154f0a5)
3147

48+
3249
0.1.3
3350
~~~~~
3451
- Bootstrap glyphicon marker icons. @birdage
@@ -51,6 +68,7 @@ Bug Fixes
5168
- Changed no-data fill to null/no-fill, rather than #fff. (Rob Story 6ff80a6)
5269
- Fixed issue with counties TopoJSON. (Rob Story cddaab3)
5370

71+
5472
0.1.2
5573
~~~~~
5674
- TopoJSON functionality. (Rob Story 5566b71)

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
include *.md
21
include *.txt
32

43
recursive-include folium *.py

folium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import absolute_import
33

4-
__version__ = '0.1.5'
4+
__version__ = '0.2.0.dev'
55

66
from folium.folium import Map, initialize_notebook

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
class PyTest(TestCommand):
1212
def finalize_options(self):
1313
TestCommand.finalize_options(self)
14-
# FIXME: '--doctest-modules'
15-
self.test_args = ['--verbose']
16-
self.test_suite = True
14+
self.verbose = True
1715

1816
def run_tests(self):
1917
import pytest
@@ -76,11 +74,12 @@ def walk_subpkg(name):
7674
author_email='[email protected]',
7775
url='https://github.com/python-visualization/folium',
7876
keywords='data visualization',
79-
classifiers=['Development Status :: 4 - Beta',
80-
'Programming Language :: Python :: 2.7',
77+
classifiers=['Programming Language :: Python :: 2.7',
8178
'Programming Language :: Python :: 3.3',
8279
'Programming Language :: Python :: 3.4',
83-
'License :: OSI Approved :: MIT License'],
80+
'Programming Language :: Python :: 3.5',
81+
'License :: OSI Approved :: MIT License',
82+
'Development Status :: 5 - Production/Stable'],
8483
packages=pkgs,
8584
package_data=pkg_data,
8685
cmdclass=dict(test=PyTest),

0 commit comments

Comments
 (0)