Skip to content

Commit

Permalink
Solve numpy dep issues + use local install
Browse files Browse the repository at this point in the history
  • Loading branch information
cphyc committed Feb 28, 2022
1 parent 5d1e2f6 commit ee408a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
sudo apt-get -qqy update
sudo apt-get -qqy install yorick
python -m pip install --upgrade pip wheel
python -m pip install .[test] -v
python -m pip install -e .[test] -v
- name: Test with pytest
run: |
pytest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [
"setuptools>=19.6",
"wheel",
"Cython>=0.29.21",
"numpy>=1.19.2"
"numpy>=1.18,<1.22"
]

[tool.black]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ install_requires =
cython-fortran-file>=0.2.2
kaitaistruct>=0.8
numba>=0.40
numpy>=1.10
numpy>=1.18,<1.22
scipy>=1.4.1
yt>=4.0
python_requires = >=3.7
Expand Down

0 comments on commit ee408a5

Please sign in to comment.