Skip to content

Commit

Permalink
build: fix pandas and python version
Browse files Browse the repository at this point in the history
  • Loading branch information
vivienho committed Aug 7, 2024
1 parent cc65c27 commit 24aac78
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.0
v1.1.2
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -50,7 +50,7 @@ def run(self):
[console_scripts]
ontoma=ontoma.cli:ontoma
''',
python_requires='>=3.7',
python_requires='>=3.8',
cmdclass={
'verify': VerifyVersionCommand,
}
Expand Down

0 comments on commit 24aac78

Please sign in to comment.