Skip to content

Commit

Permalink
Simplify pynbody installation in tests again now that the offending P…
Browse files Browse the repository at this point in the history
…ython 3.8 versions were yanked
  • Loading branch information
jobovy committed Dec 21, 2023
1 parent c7d38e4 commit 8e03145
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,17 +225,11 @@ jobs:
run: |
pip install --upgrade --upgrade-strategy eager numpy scipy matplotlib numexpr setuptools cython pytest tqdm
- name: Install pynbody
if: ${{ matrix.REQUIRES_PYNBODY && matrix.python-version != '3.8' }}
if: ${{ matrix.REQUIRES_PYNBODY }}
run: |
pip install --upgrade --upgrade-strategy eager h5py pandas pytz
pip install --upgrade --upgrade-strategy eager wheel
pip install --upgrade --upgrade-strategy eager pynbody
- name: Install pynbody (Python 3.8)
if: ${{ matrix.REQUIRES_PYNBODY && matrix.python-version == '3.8' }}
run: |
pip install --upgrade --upgrade-strategy eager h5py pandas pytz
pip install --upgrade --upgrade-strategy eager wheel
pip install --upgrade --upgrade-strategy eager pynbody==1.4.2
- name: Install astropy
if: ${{ matrix.REQUIRES_ASTROPY }}
run: pip install astropy pyerfa
Expand Down

0 comments on commit 8e03145

Please sign in to comment.