From 2adbd6243ee3d9d51a6611775d8c5108fa6f5126 Mon Sep 17 00:00:00 2001 From: pbashyal-nmdp Date: Mon, 2 Nov 2020 16:37:54 -0600 Subject: [PATCH 1/2] Upgrade pandas to 1.1.4 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 121aad8..78516cc 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ history = history_file.read() requirements = [ - 'pandas==1.1.2' + 'pandas>=1.1.4' ] @@ -62,6 +62,7 @@ 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', 'Natural Language :: English', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], test_suite='tests', tests_require=test_requirements, From c5c94e6c5a6328f90d08da5a47865f17b4cd06bf Mon Sep 17 00:00:00 2001 From: pbashyal-nmdp Date: Mon, 2 Nov 2020 16:38:55 -0600 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.4.0=20=E2=86=92=200.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyard/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyard/__init__.py b/pyard/__init__.py index f310835..9a74116 100644 --- a/pyard/__init__.py +++ b/pyard/__init__.py @@ -24,4 +24,4 @@ from .pyard import ARD __author__ = """NMDP Bioinformatics""" -__version__ = '0.4.0' +__version__ = '0.4.1' diff --git a/setup.cfg b/setup.cfg index 30c6d04..31e67b2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.4.1 commit = True tag = True diff --git a/setup.py b/setup.py index 78516cc..888fa90 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ setup( name='py-ard', - version='0.4.0', + version='0.4.1', description="ARD reduction for HLA with python", long_description=readme + '\n\n' + history, author="CIBMTR",