3030 - name : Install dependencies
3131 run : |
3232 python -m pip install --upgrade pip setuptools wheel
33- python -m pip --no-cache-dir --quiet install --upgrade --pre .[ test]
33+ python -m pip --no-cache-dir --quiet install --upgrade --pre ".[all, test]"
3434 python -m pip list
3535
3636 - name : List release candidates, alpha, and beta releases
6262 - name : Install dependencies
6363 run : |
6464 python -m pip install --upgrade pip setuptools wheel
65- python -m pip --no-cache-dir --quiet install --upgrade .[ test]
65+ python -m pip --no-cache-dir --quiet install --upgrade ".[all, test]"
6666 python -m pip uninstall --yes scipy
6767 python -m pip install --upgrade --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple scipy
6868 python -m pip list
8888 - name : Install dependencies
8989 run : |
9090 python -m pip install --upgrade pip setuptools wheel
91- python -m pip --no-cache-dir --quiet install --upgrade .[ test]
91+ python -m pip --no-cache-dir --quiet install --upgrade ".[all, test]"
9292 python -m pip uninstall --yes iminuit
9393 python -m pip install --upgrade cython
9494 python -m pip install --upgrade git+https://github.com/scikit-hep/iminuit.git
@@ -114,7 +114,7 @@ jobs:
114114 - name : Install dependencies
115115 run : |
116116 python -m pip install --upgrade pip setuptools wheel
117- python -m pip --no-cache-dir --quiet install --upgrade .[ test]
117+ python -m pip --no-cache-dir --quiet install --upgrade ".[all, test]"
118118 python -m pip uninstall --yes uproot
119119 python -m pip install --upgrade git+https://github.com/scikit-hep/uproot5.git
120120 python -m pip list
@@ -141,7 +141,7 @@ jobs:
141141 - name : Install dependencies
142142 run : |
143143 python -m pip install --upgrade pip setuptools wheel
144- python -m pip --no-cache-dir --quiet install --upgrade .[ test]
144+ python -m pip --no-cache-dir --quiet install --upgrade ".[all, test]"
145145 python -m pip uninstall --yes matplotlib
146146 # Need to use --extra-index-url as dependencies aren't on scientific-python-nightly-wheels package index.
147147 # Need to use --pre as dev releases will need priority over stable releases.
@@ -176,7 +176,7 @@ jobs:
176176 - name : Install dependencies
177177 run : |
178178 python -m pip install --upgrade pip setuptools wheel
179- python -m pip --no-cache-dir --quiet install --upgrade .[ test]
179+ python -m pip --no-cache-dir --quiet install --upgrade ".[all, test]"
180180 python -m pip uninstall --yes pytest
181181 python -m pip install --upgrade git+https://github.com/pytest-dev/pytest.git
182182 python -m pip list
0 commit comments