Skip to content

Commit

Permalink
install quiet too
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Feb 16, 2024
1 parent 5fa8e6f commit 0352d78
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/dependencies-head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:

- name: Install dependencies
run: |
python -m pip install uv
python -m uv pip install --upgrade pip setuptools wheel
python -m pip --no-cache-dir --quiet install --upgrade --pre ".[all,test]"
python -m uv pip --no-cache-dir --quiet install --upgrade --pre ".[all,test]"
python -m pip list
- name: List release candidates, alpha, and beta releases
Expand Down Expand Up @@ -61,8 +62,9 @@ jobs:
# c.f. https://twitter.com/ralfgommers/status/1419917265781334025
- name: Install dependencies
run: |
python -m pip install uv
python -m uv pip install --upgrade pip setuptools wheel
python -m pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m uv pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m pip uninstall --yes scipy
python -m uv pip install --upgrade --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scipy
python -m pip list
Expand All @@ -88,7 +90,7 @@ jobs:
- name: Install dependencies
run: |
python -m uv pip install --upgrade pip setuptools wheel
python -m pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m uv pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m pip uninstall --yes iminuit
python -m uv pip install --upgrade cython
python -m uv pip install --upgrade git+https://github.com/scikit-hep/iminuit.git
Expand All @@ -114,7 +116,7 @@ jobs:
- name: Install dependencies
run: |
python -m uv pip install --upgrade pip setuptools wheel
python -m pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m uv pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m pip uninstall --yes uproot
python -m uv pip install --upgrade git+https://github.com/scikit-hep/uproot5.git
python -m pip list
Expand All @@ -141,7 +143,7 @@ jobs:
- name: Install dependencies
run: |
python -m uv pip install --upgrade pip setuptools wheel
python -m pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m uv pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m pip uninstall --yes matplotlib
# Need to use --extra-index-url as dependencies aren't on scientific-python-nightly-wheels package index.
# Need to use --pre as dev releases will need priority over stable releases.
Expand Down Expand Up @@ -176,7 +178,7 @@ jobs:
- name: Install dependencies
run: |
python -m uv pip install --upgrade pip setuptools wheel
python -m pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m uv pip --no-cache-dir --quiet install --upgrade ".[all,test]"
python -m pip uninstall --yes pytest
python -m uv pip install --upgrade git+https://github.com/pytest-dev/pytest.git
python -m pip list
Expand Down

0 comments on commit 0352d78

Please sign in to comment.