From 5aad179ae6c1196bfead8028fe728b19d5ba05f4 Mon Sep 17 00:00:00 2001 From: Kirill Bessonov Date: Thu, 14 Mar 2024 12:47:11 -0400 Subject: [PATCH] setup.py updated pandas to <3 requirement --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index fa3950d..8b3ff50 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,13 @@ from sistr.sistr_cmd import setup_sistr_dbs classifiers = """ -Development Status :: 4 - Beta +Development Status :: Release Environment :: Console License :: OSI Approved :: Apache Software License Intended Audience :: Science/Research Topic :: Scientific/Engineering Topic :: Scientific/Engineering :: Bio-Informatics Programming Language :: Python -Programming Language :: Python :: 2.7 Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 @@ -50,7 +49,7 @@ def run(self): install_requires=[ 'numpy>=1.11.1,<1.23.5', 'tables>=3.3.0,<4', - 'pandas>=0.22.0,<2', + 'pandas>=0.22.0,<3', 'pycurl>=7.43.0,<8', 'scipy>=1.1.0,<2', ],