Skip to content

Commit

Permalink
Unpin numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
reweeden committed Oct 31, 2024
1 parent 119fd08 commit b392159
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mandible"
version = "0.8.0"
version = "0.8.1"
description = "A generic framework for writing satellite data ingest systems"
authors = ["Rohan Weeden <[email protected]>", "Matt Perry <[email protected]>"]
license = "APACHE-2"
Expand All @@ -21,7 +21,9 @@ s3fs = ">=0.4.2"
h5py = { version = "^3.6.0", optional = true }
jsonpath-ng = { version = "^1.4.0", optional = true }
lxml = { version = "^4.9.2", optional = true }
numpy = { version = "^1.21.6", optional = true }
# Numpy is pinned to a minimum version by h5py. Unpinning here means our
# requirements will always match those of h5py.
numpy = { version = "*", optional = true }

[tool.poetry.extras]
all = ["h5py", "numpy", "jsonpath-ng", "lxml"]
Expand Down

0 comments on commit b392159

Please sign in to comment.