From 08a465969a9a783f542e767c3757f3f69185d91a Mon Sep 17 00:00:00 2001 From: Aleksey Bilogur Date: Sun, 27 Feb 2022 15:36:58 -0500 Subject: [PATCH] Bump version. --- missingno/_version.py | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/missingno/_version.py b/missingno/_version.py index 2b8877c..93b60a1 100644 --- a/missingno/_version.py +++ b/missingno/_version.py @@ -1 +1 @@ -__version__ = '0.5.0' +__version__ = '0.5.1' diff --git a/setup.py b/setup.py index b0dd95c..b3f4187 100644 --- a/setup.py +++ b/setup.py @@ -2,16 +2,16 @@ setup( name='missingno', license='MIT License', - packages=['missingno'], # this must be the same as the name above + packages=['missingno'], install_requires=['numpy', 'matplotlib', 'scipy', 'seaborn'], extras_require={'tests': ['pytest', 'pytest-mpl']}, py_modules=['missingno'], - version='0.5.0', # note to self: also update the one is the source! + version='0.5.1', # note to self: also update the one is the source! description='Missing data visualization module for Python.', author='Aleksey Bilogur', author_email='aleksey.bilogur@gmail.com', url='https://github.com/ResidentMario/missingno', - download_url='https://github.com/ResidentMario/missingno/tarball/0.5.0', + download_url='https://github.com/ResidentMario/missingno/tarball/0.5.1', keywords=['data', 'data visualization', 'data analysis', 'missing data', 'data science', 'pandas', 'python', 'jupyter'], classifiers=[]