Skip to content

Commit

Permalink
Try forcing numpy < 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Landreman committed Jun 19, 2024
1 parent 181f5f1 commit a205eae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
# mpi4py is not needed for installation, but it is needed to actually do anything with the vmec python module.
# scipy is not needed for the vmec module itself, but we use it for testing (to read netcdf).
- name: Install python packages
run: pip install numpy mpi4py scipy
run: pip install "numpy<2.0.0" mpi4py scipy

#- name: Install the latest version of f90wrap, more recent than the PyPI version
# run: pip install git+https://github.com/jameskermode/f90wrap
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja", "numpy", "f90wrap"]
requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja", "numpy<2.0.0", "f90wrap"]

0 comments on commit a205eae

Please sign in to comment.