Skip to content

Commit

Permalink
Don't allow each package's test-requirements to uninstall the latest …
Browse files Browse the repository at this point in the history
…versions of other packages.
  • Loading branch information
jpivarski authored Dec 4, 2023
1 parent a5d7e6d commit ecbac21
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,30 +113,30 @@ jobs:
run: |
cd repo-awkward
pipx run nox -s prepare -- --headers --signatures --tests
python -m pip install -r requirements-test.txt
python -m pip install -vv ./awkward-cpp
python -m pip install .[test]
python -m pip install --pre -r requirements-test.txt
python -m pip install --pre -vv ./awkward-cpp
python -m pip install --pre .[test]
cd ..
- name: Build dask-contrib/dask-awkward
shell: bash -el {0}
run: |
cd repo-dask-awkward
python -m pip install .[complete,test]
python -m pip install --pre .[complete,test]
cd ..
- name: Build scikit-hep/uproot5
shell: bash -el {0}
run: |
cd repo-uproot5
python -m pip install .[test,dev]
python -m pip install --pre .[test,dev]
cd ..
- name: Build CoffeaTeam/coffea
shell: bash -el {0}
run: |
cd repo-coffea
python -m pip install -q -e '.[dev,dask]' --upgrade --upgrade-strategy eager
python -m pip install --pre -q -e '.[dev,dask]' --upgrade --upgrade-strategy eager
cd ..
- name: Test scikit-hep/awkward
Expand Down

0 comments on commit ecbac21

Please sign in to comment.