Skip to content

Commit c760ec0

Browse files
fix
1 parent 4501c42 commit c760ec0

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/e2e-cache.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,12 @@ jobs:
5050
with:
5151
python-version: ${{ matrix.python-version }}
5252
cache: 'pip'
53-
- name: Install dependencies
53+
54+
- name: Upgrade pip, setuptools, and wheel
5455
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
6359

6460
python-pipenv-dependencies-caching:
6561
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }})

0 commit comments

Comments
 (0)