Skip to content

Commit

Permalink
reduce numpy version constraint
Browse files Browse the repository at this point in the history
numpy v2.0 is still quite new and some packages may not be compatible with it yet. We can use numpy >=v1.23.5 instead and still be compatible with the other dependencies.
  • Loading branch information
MitchellAcoustics committed Aug 2, 2024
1 parent d30a220 commit e6294a4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ build-backend = "flit_core.buildapi"
name = "acoustic-toolbox"
version = "0.1.1"
authors = [
{ name = "Valentin LE BESCOND", email = "valentin.lebescond@univ-eiffel.fr" }
{ name = "Valentin LE BESCOND", email = "valentin.lebescond@univ-eiffel.fr" },
{ name = "Andrew Mitchell", email = "a.j.mitchell@ucl.ac.uk"}
]
description = "Acoustic Toolbox module for Python."
readme = "README.md"
Expand All @@ -16,7 +17,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.8",
"numpy>=1.23.5",
"scipy>=1.14.0",
"matplotlib>=3.9.1",
"six>=1.16.0",
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ notebook==7.2.1
notebook-shim==0.2.4
# via jupyterlab
# via notebook
numpy==1.26.4
numpy==2.0.1
# via acoustic-toolbox
# via contourpy
# via matplotlib
Expand Down
2 changes: 1 addition & 1 deletion requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ notebook==7.2.1
notebook-shim==0.2.4
# via jupyterlab
# via notebook
numpy==1.26.4
numpy==2.0.1
# via acoustic-toolbox
# via contourpy
# via matplotlib
Expand Down

0 comments on commit e6294a4

Please sign in to comment.