Skip to content

Commit

Permalink
Pin minimum geopandas version, fix typo (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
ResidentMario authored Sep 10, 2021
1 parent da6e7ec commit a8758e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions geoplot/geoplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

from .ops import QuadTree, build_voronoi_polygons, jitter_points

__version__ = "0.4.3"
__version__ = "0.4.4"
MATPLOTLIB_DOCS_VERSION = "3.2.1" # used in some docstrings


Expand Down Expand Up @@ -714,7 +714,7 @@ def init_axis(self):
)
else:
warnings.warn(
'Cound not set plot extent successfully due to numerical instability. '
'Could not set plot extent successfully due to numerical instability. '
'Try setting extent manually. Defaulting to a global extent.'
)

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
name='geoplot',
packages=['geoplot'],
install_requires=[
'matplotlib', 'seaborn', 'pandas', 'geopandas', 'cartopy', 'mapclassify>=2.1',
'matplotlib', 'seaborn', 'pandas', 'geopandas>=0.9.0', 'cartopy', 'mapclassify>=2.1',
'contextily>=1.0.0'
],
extras_require={'develop': [
'pytest', 'pytest-mpl', 'scipy', 'pylint', 'jupyter', 'sphinx', 'sphinx-gallery',
'sphinx_rtd_theme', 'mplleaflet'
]},
py_modules=['geoplot', 'crs', 'utils', 'ops'],
version='0.4.3',
version='0.4.4',
python_requires='>=3.6.0',
description='High-level geospatial plotting for Python.',
author='Aleksey Bilogur',
author_email='[email protected]',
url='https://github.com/ResidentMario/geoplot',
download_url='https://github.com/ResidentMario/geoplot/tarball/0.4.3',
download_url='https://github.com/ResidentMario/geoplot/tarball/0.4.4',
keywords=[
'data', 'data visualization', 'data analysis', 'data science', 'pandas', 'geospatial data',
'geospatial analytics'
Expand Down

0 comments on commit a8758e0

Please sign in to comment.