3030 - name : Install dependencies
3131 run : |
3232 python -m pip install uv
33- python -m uv pip install --system --upgrade pip setuptools wheel
34- python -m uv pip --no-cache --quiet install --system --upgrade --pre ".[all,test]"
33+ uv pip install --system --upgrade pip setuptools wheel
34+ uv pip --no-cache --quiet install --system --upgrade --pre ".[all,test]"
3535 python -m pip list
3636
3737 - name : List release candidates, alpha, and beta releases
@@ -63,10 +63,10 @@ jobs:
6363 - name : Install dependencies
6464 run : |
6565 python -m pip install uv
66- python -m uv pip install --system --upgrade pip setuptools wheel
67- python -m uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
68- python -m uv pip uninstall --yes scipy
69- python -m uv pip install --system --upgrade --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scipy
66+ uv pip install --system --upgrade pip setuptools wheel
67+ uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
68+ uv pip uninstall --yes scipy
69+ uv pip install --system --upgrade --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scipy
7070 python -m pip list
7171
7272 - name : Test with pytest
@@ -90,11 +90,11 @@ jobs:
9090 - name : Install dependencies
9191 run : |
9292 python -m pip install uv
93- python -m uv pip install --system --upgrade pip setuptools wheel
94- python -m uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
95- python -m uv pip uninstall --yes iminuit
96- python -m uv pip install --system --upgrade cython
97- python -m uv pip install --system --upgrade git+https://github.com/scikit-hep/iminuit.git
93+ uv pip install --system --upgrade pip setuptools wheel
94+ uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
95+ uv pip uninstall --yes iminuit
96+ uv pip install --system --upgrade cython
97+ uv pip install --system --upgrade git+https://github.com/scikit-hep/iminuit.git
9898 python -m pip list
9999 - name : Test with pytest
100100 run : |
@@ -117,10 +117,10 @@ jobs:
117117 - name : Install dependencies
118118 run : |
119119 python -m pip install uv
120- python -m uv pip install --system --upgrade pip setuptools wheel
121- python -m uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
122- python -m uv pip uninstall --yes uproot
123- python -m uv pip install --system --upgrade git+https://github.com/scikit-hep/uproot5.git
120+ uv pip install --system --upgrade pip setuptools wheel
121+ uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
122+ uv pip uninstall --yes uproot
123+ uv pip install --system --upgrade git+https://github.com/scikit-hep/uproot5.git
124124 python -m pip list
125125 - name : Test with pytest
126126 run : |
@@ -145,12 +145,12 @@ jobs:
145145 - name : Install dependencies
146146 run : |
147147 python -m pip install uv
148- python -m uv pip install --system --upgrade pip setuptools wheel
149- python -m uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
150- python -m uv pip uninstall --yes matplotlib
148+ uv pip install --system --upgrade pip setuptools wheel
149+ uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
150+ uv pip uninstall --yes matplotlib
151151 # Need to use --extra-index-url as dependencies aren't on scientific-python-nightly-wheels package index.
152152 # Need to use --pre as dev releases will need priority over stable releases.
153- python -m uv pip install --system \
153+ uv pip install --system \
154154 --upgrade \
155155 --pre \
156156 --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
@@ -181,10 +181,10 @@ jobs:
181181 - name : Install dependencies
182182 run : |
183183 python -m pip install uv
184- python -m uv pip install --system --upgrade pip setuptools wheel
185- python -m uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
186- python -m uv pip uninstall --yes pytest
187- python -m uv pip install --system --upgrade git+https://github.com/pytest-dev/pytest.git
184+ uv pip install --system --upgrade pip setuptools wheel
185+ uv pip --no-cache --quiet install --system --upgrade ".[all,test]"
186+ uv pip uninstall --yes pytest
187+ uv pip install --system --upgrade git+https://github.com/pytest-dev/pytest.git
188188 python -m pip list
189189 - name : Test with pytest
190190 run : |
0 commit comments