From a8758e03d52d5c12a7f894bfbad3849f32fe4b56 Mon Sep 17 00:00:00 2001 From: Aleksey Bilogur Date: Fri, 10 Sep 2021 18:48:22 -0400 Subject: [PATCH] Pin minimum geopandas version, fix typo (#252) --- geoplot/geoplot.py | 4 ++-- setup.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/geoplot/geoplot.py b/geoplot/geoplot.py index 74571ec..10d21d3 100644 --- a/geoplot/geoplot.py +++ b/geoplot/geoplot.py @@ -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 @@ -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.' ) diff --git a/setup.py b/setup.py index dac66f6..cd26613 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ 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': [ @@ -11,13 +11,13 @@ '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='aleksey.bilogur@gmail.com', 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'