File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -50,16 +50,12 @@ jobs:
50
50
with :
51
51
python-version : ${{ matrix.python-version }}
52
52
cache : ' pip'
53
- - name : Install dependencies
53
+
54
+ - name : Upgrade pip, setuptools, and wheel
54
55
run : |
55
- if [[ "${{ matrix.python-version }}" == pypy* && "${{ runner.os }}" == "macOS" ]]; then
56
- echo "Skipping NumPy on PyPy + macOS (no prebuilt wheels available)"
57
- pip install pandas requests
58
- elif [[ "${{ matrix.python-version }}" == pypy* ]]; then
59
- pip install "numpy<2.0" pandas requests
60
- else
61
- pip install numpy pandas requests
62
- fi
56
+ python -m pip install --upgrade pip setuptools wheel
57
+ - name : Install dependencies
58
+ run : pip install numpy pandas requests
63
59
64
60
python-pipenv-dependencies-caching :
65
61
name : Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }})
You can’t perform that action at this time.
0 commit comments