Skip to content

Commit

Permalink
reverting to force numpy<2
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesBuchner committed Oct 26, 2024
1 parent 7681e7d commit fbde672
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: python -m pip install --upgrade --force-reinstall cython numpy scipy matplotlib corner getdist h5py pandas flake8 pycodestyle pydocstyle pytest-html pytest-xdist
run: python -m pip install cython numpy scipy matplotlib corner getdist h5py pandas flake8 pycodestyle pydocstyle pytest-html pytest-xdist

- name: Lint with flake8
run: flake8 $(ls ultranest/*.py | grep -Ev '^ultranest/(flatnuts|dychmc|dyhmc|pathsampler).py')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
history_file.read())


requirements = ['numpy', 'cython', 'matplotlib', 'corner']
requirements = ['numpy<2', 'cython', 'matplotlib', 'corner']

setup_requirements = ['pytest-runner', ]

Expand Down

0 comments on commit fbde672

Please sign in to comment.