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 121aad8..888fa90 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ history = history_file.read() requirements = [ - 'pandas==1.1.2' + 'pandas>=1.1.4' ] @@ -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", @@ -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,