Skip to content

Commit

Permalink
Use looser dependency specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
devsjc committed Dec 13, 2023
1 parent 1e83245 commit 91888e9
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ authors = [
]
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"cfgrib == 0.9.10.4",
"dask[distributed] == 2023.12.0",
"docopt == 0.6.2",
"ecmwf-api-client == 1.6.3",
"fsspec[s3] == 2023.12.1",
"huggingface-hub == 0.19.4",
"marshmallow == 3.20.1",
"marshmallow-dataclass == 8.6.0",
"cfgrib >= 0.9.10.4",
"dask[distributed] >= 2023.12.0",
"docopt >= 0.6.2",
"ecmwf-api-client >= 1.6.3",
"fsspec[s3] >= 2023.12.1",
"huggingface-hub >= 0.19.4",
"marshmallow >= 3.20.1",
"marshmallow-dataclass >= 8.6.0",
"numpy >= 1.23.2",
"ocf-blosc2 == 0.0.3",
"psutil == 5.9.6",
"pyproj == 3.6.1",
"requests == 2.31.0",
"structlog == 23.2.0",
"urllib3 == 2.0.2",
"xarray == 2023.11.0",
"zarr == 2.16.1"
"ocf-blosc2 >= 0.0.3",
"psutil >= 5.9.6",
"pyproj >= 3.6.1",
"requests >= 2.31.0",
"structlog >= 23.2.0",
"urllib3 >= 2.0.2",
"xarray >= 2023.11.0",
"zarr >= 2.16.1"
]

[project.optional-dependencies]
Expand Down

0 comments on commit 91888e9

Please sign in to comment.