Skip to content

Commit

Permalink
Add upper bounds to the specified mathematical library versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Ranalli committed Aug 9, 2024
1 parent a7368a1 commit 7824978
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
packages=find_packages(where="src"),
install_requires=[
'numpy<2',
'pandas',
'tables', # possibly must be installed separately via conda pytables because of MS dependency
'pyproj',
'pvlib',
'netcdf4',
'scipy'
'pandas<=2.2.2',
'tables<=3.9.2',
'pyproj<=3.6.1',
'pvlib<=0.11.0',
'netcdf4<1.7.2',
'scipy<=1.14.0'
],
license='BSD (3 Clause)',
extras_require=dict(tests=['pytest'], demos=['matplotlib', 'jupyter'], docs=['sphinx', 'nbsphinx', 'sphinx_rtd_theme', 'ipython']),
Expand Down

0 comments on commit 7824978

Please sign in to comment.