Skip to content

Commit

Permalink
restrictinng versions of dependencies due to breaking updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jrober84 committed Jan 25, 2023
1 parent 0123cda commit 90be87b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ def run(self):
'install': CustomInstallCommand
},
install_requires=[
'numpy>=1.11.1',
'pandas>=0.18.1',
'tables>=3.3.0',
'pycurl>=7.43.0',
'scipy>=1.1.0'
'numpy>=1.11.1,<1.23.5',
'tables>=3.3.0,<4',
'pandas>=0.22.0,<=1.0.5',
'pycurl>=7.43.0,<8',
'scipy>=1.1.0,<2',
],
extras_require={
'test': ['pytest>=2.9.2',],
Expand Down

0 comments on commit 90be87b

Please sign in to comment.