Skip to content

Commit

Permalink
Update to 0.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ResidentMario committed Aug 24, 2019
1 parent 7871b2b commit 402a945
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 402a945

Please sign in to comment.