diff --git a/.stickler.yml b/.stickler.yml new file mode 100644 index 0000000000..deaa15a6a8 --- /dev/null +++ b/.stickler.yml @@ -0,0 +1,5 @@ +linters: + flake8: + pep8: +files: + ignore: ['*.ipynb'] diff --git a/.travis.yml b/.travis.yml index 525dca3aae..79e68c9d37 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,20 +11,20 @@ matrix: include: - python: 2.7 env: TEST_TARGET=branca_release - - python: 3.5 + - python: 3.6 env: TEST_TARGET=branca_release - - python: 3.5 + - python: 3.6 env: TEST_TARGET=coding_standards - - python: 3.5 + - python: 3.6 env: TEST_TARGET=notebooks - python: 2.7 env: TEST_TARGET=branca_latest - - python: 3.5 + - python: 3.6 env: TEST_TARGET=branca_latest allow_failures: - python: 2.7 env: TEST_TARGET=branca_latest - - python: 3.5 + - python: 3.6 env: TEST_TARGET=branca_latest before_install: @@ -36,10 +36,10 @@ before_install: - conda create --yes -n TEST python=$TRAVIS_PYTHON_VERSION --file requirements.txt --file requirements-dev.txt - source activate TEST - - if [[ "$TRAVIS_PYTHON_VERSION" != "3.5" ]]; then + - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then conda install --yes mock ; fi - - if [[ "$TRAVIS_PYTHON_VERSION" == "3.5" ]]; then + - if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then conda install --yes doctr ; fi diff --git a/MANIFEST.in b/MANIFEST.in index fc441e0581..b41c3a31f7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,3 +4,4 @@ recursive-include folium *.py recursive-include folium *.js recursive-include folium/plugins * recursive-include folium/templates * +prune examples/ diff --git a/folium/__init__.py b/folium/__init__.py index d8eefd8b21..ea4f8fe8be 100644 --- a/folium/__init__.py +++ b/folium/__init__.py @@ -17,7 +17,7 @@ TopoJson, WmsTileLayer ) -__version__ = '0.3.0.dev' +__version__ = '0.3.0' __all__ = [ 'CssLink',