Skip to content

Commit

Permalink
Restrict numpy version for now (#206)
Browse files Browse the repository at this point in the history
* Restrict numpy version for now

* Update requirements.txt
  • Loading branch information
mattjala committed Jun 18, 2024
1 parent b16db5b commit 5e5b864
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ kiwisolver==1.4.5
matplotlib==3.8.4
mccabe==0.7.0
multidict==6.0.5
numpy==1.26.4
numpy>=1.26.4,<2.0.0
packaging==24.0
pillow==10.3.0
pycodestyle==2.11.1
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ requires-python = ">=3.8"
version = "0.18.0"

dependencies = [
"numpy >= 1.17.3",
"numpy >= 1.17.3, < 2.0.0",
"requests_unixsocket",
"pytz",
"pyjwt",
Expand Down Expand Up @@ -82,4 +82,4 @@ hsstat = "h5pyd._apps.hsstat:main"

[tool.setuptools]
packages=["h5pyd", "h5pyd._hl", "h5pyd._apps"]
include-package-data = false
include-package-data = false

0 comments on commit 5e5b864

Please sign in to comment.