Skip to content

Commit

Permalink
setup.py updated pandas to <2 requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
kbessonov1984 committed Mar 14, 2024
1 parent f02638f commit 8b7343c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import find_namespace_packages
from setuptools.command.install import install
from sistr.version import __version__
import subprocess
from sistr.sistr_cmd import setup_sistr_dbs

classifiers = """
Development Status :: 4 - Beta
Expand All @@ -26,7 +26,7 @@ def run(self):
install.run(self)
self.do_egg_install()
print("SISTR DB Setup ...")
subprocess.run("sistr_init")
setup_sistr_dbs()
print("Done")


Expand All @@ -50,7 +50,7 @@ def run(self):
install_requires=[
'numpy>=1.11.1,<1.23.5',
'tables>=3.3.0,<4',
'pandas>=0.22.0,<=1.0.5',
'pandas>=0.22.0,<2',
'pycurl>=7.43.0,<8',
'scipy>=1.1.0,<2',
],
Expand Down

0 comments on commit 8b7343c

Please sign in to comment.