Skip to content

Commit

Permalink
Version bump for new release. (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
ResidentMario authored May 17, 2020
1 parent cc836ee commit 9aaad3a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
# -- Project information -----------------------------------------------------

project = 'geoplot'
copyright = '2016-2019, Aleksey Bilogur'
copyright = '2016-2020, Aleksey Bilogur'
author = 'Aleksey Bilogur'

# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '0.3.1'
release = '0.4.1'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions geoplot/geoplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
except ImportError:
from geopandas.plotting import __pysal_choro as _mapclassify_choro

__version__ = "0.4.0"
MATPLOTLIB_DOCS_VERSION = "3.1.1" # used in some docstrings
__version__ = "0.4.1"
MATPLOTLIB_DOCS_VERSION = "3.2.1" # used in some docstrings


class HueMixin:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
packages=['geoplot'],
install_requires=[
'matplotlib', 'seaborn', 'pandas', 'geopandas', 'cartopy', 'descartes',
'mapclassify>=2.1', 'contextily>=1.0rc2'
'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.0',
version='0.4.1',
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.0',
download_url='https://github.com/ResidentMario/geoplot/tarball/0.4.1',
keywords=[
'data', 'data visualization', 'data analysis', 'data science', 'pandas', 'geospatial data',
'geospatial analytics'
Expand Down

0 comments on commit 9aaad3a

Please sign in to comment.