Skip to content

Commit

Permalink
align version spec in conda meta and pyproject.toml
Browse files Browse the repository at this point in the history
also replace version spec ~0.x by >=0.x
(greyskull did not like it)
  • Loading branch information
sebhmg committed Nov 16, 2024
1 parent 6b82b8e commit 56bb8ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ requirements:
run:
- python >=3.10.0,<4
- numpy >=1.26.0,<1.27.0
- geoh5py >=0.10.0a1,<0.11.0a0.dev0
- geoh5py >=0.10.0b1,<0.11.0a.dev

test:
imports:
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ numpy = "~1.26.0" # also in geoh5py

## dependencies from Git repositories
#------------------------------------
geoh5py = {version = ">=0.10.0-beta.1, <0.11", allow-prereleases = true}
geoh5py = {version = ">=0.10.0b1, <0.11.0a.dev", allow-prereleases = true}
#geoh5py = {git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "release/0.10.0"}
#geoh5py = {path = "../geoh5py", develop = true}

Expand Down

0 comments on commit 56bb8ff

Please sign in to comment.