From 402a9451dfc931ef3da0461b9ba76f62ae7b7a48 Mon Sep 17 00:00:00 2001 From: ResidentMario Date: Sat, 24 Aug 2019 16:12:53 -0700 Subject: [PATCH] Update to 0.3.1. --- CONTRIBUTING.md | 4 +++- setup.py | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8e09b99e..edbe9e84 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -71,8 +71,10 @@ The documentation is served at [residentmario.github.io](https://residentmario.g git checkout gh-pages rm -rf * git checkout master -- docs/ examples/ geoplot/ +cd docs make html -mv .docs/_build/html/* ./ +cd .. +mv docs/_build/html/* ./ rm -rf docs/ examples/ geoplot/ git add . git commit -m "Publishing update docs..." diff --git a/setup.py b/setup.py index 2ac44583..4f05fdbe 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,12 @@ name='geoplot', packages=['geoplot'], # this must be the same as the name above install_requires=[ - 'matplotlib', 'seaborn', 'pandas', 'geopandas', 'cartopy', 'descartes', 'mapclassify' + 'matplotlib', 'seaborn', 'pandas', 'geopandas', 'cartopy', 'descartes', 'mapclassify', + 'contextily>=1.0rc2' ], extras_require={'develop': ['pytest', 'pytest-mpl', 'scipy']}, py_modules=['geoplot', 'crs', 'utils', 'ops'], - version='0.3.0', + version='0.3.1', python_requires='>=3.6.0', description='High-level geospatial plotting for Python.', author='Aleksey Bilogur',