Skip to content

Commit

Permalink
adding compatible versioning for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mnblonsky committed May 2, 2024
1 parent 7ffbcff commit 6d920d8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ build-backend = "hatchling.build"
name = "ochre-nrel"
dynamic = ["version"]
dependencies = [
"numpy",
"pandas>=1.4.0",
"scipy",
"matplotlib",
"numpy ~= 1.26",
"pandas >=1.4, < 3.0",
"scipy ~= 1.11",
"matplotlib ~= 3.8",
"pint",
"pvlib",
"nrel-pysam>=5.0",
"psychrolib",
"numba", # required for psychrolib
"pvlib ~= 0.10",
"nrel-pysam ~= 5.1",
"psychrolib ~= 2.5",
"numba ~= 0.59", # required for psychrolib
"xmltodict",
"pyarrow",
"fastparquet",
"rainflow",
"pytz",
"python-dateutil",
]
requires-python = ">=3.9,<3.12"
requires-python = ">=3.9"
authors = [
{ name="Jeff Maguire", email="Jeff.Maguire@nrel.gov" },
{ name="Michael Blonsky", email="Michael.Blonsky@nrel.gov" },
Expand Down

0 comments on commit 6d920d8

Please sign in to comment.