mirror of
https://github.com/actions/setup-python.git
synced 2025-09-10 18:56:16 +00:00
workflow update
This commit is contained in:
parent
9322b3ca74
commit
497ede19a6
1 changed files with 39 additions and 39 deletions
8
.github/workflows/e2e-cache.yml
vendored
8
.github/workflows/e2e-cache.yml
vendored
|
@ -42,9 +42,7 @@ jobs:
|
||||||
'3.12',
|
'3.12',
|
||||||
'3.13'
|
'3.13'
|
||||||
]
|
]
|
||||||
exclude:
|
|
||||||
- os: windows-latest
|
|
||||||
python-version: pypy-3.11-v7.x
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
|
@ -53,7 +51,9 @@ jobs:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install numpy pandas requests
|
run: |
|
||||||
|
# Use a stable NumPy version that has prebuilt wheels for PyPy on all OSes
|
||||||
|
pip install "numpy<2.1" pandas requests
|
||||||
|
|
||||||
python-pipenv-dependencies-caching:
|
python-pipenv-dependencies-caching:
|
||||||
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }})
|
name: Test pipenv (Python ${{ matrix.python-version}}, ${{ matrix.os }})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue