From 24aac787970665f1b546f771f0d629762c6b46f2 Mon Sep 17 00:00:00 2001 From: vivienho <56025826+vivienho@users.noreply.github.com> Date: Wed, 7 Aug 2024 14:09:43 +0100 Subject: [PATCH] build: fix pandas and python version --- VERSION | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 795460f..0f1acbd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v1.1.0 +v1.1.2 diff --git a/setup.py b/setup.py index 6965119..c12961a 100755 --- a/setup.py +++ b/setup.py @@ -35,13 +35,13 @@ def run(self): "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3 :: Only", ], keywords='opentargets ontology efo mapper', install_requires=[ 'click==8.1.7', - 'pandas==2.2.2', + 'pandas==1.5.3', 'pronto==2.5.3', 'requests==2.32.0', 'retry2==0.9.5', @@ -50,7 +50,7 @@ def run(self): [console_scripts] ontoma=ontoma.cli:ontoma ''', - python_requires='>=3.7', + python_requires='>=3.8', cmdclass={ 'verify': VerifyVersionCommand, }