Skip to content

Commit 1518555

Browse files
committed
Upgrade pip, as the tests now practically depend on pip >= 25.1
1 parent 54b62f9 commit 1518555

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ jobs:
298298
CIBW_MUSLLINUX_AARCH64_IMAGE: ${{ matrix.musllinux_img || 'musllinux_1_1' }}
299299
CIBW_PRERELEASE_PYTHONS: 'True'
300300
CIBW_FREE_THREADED_SUPPORT: 'True'
301-
CIBW_TEST_REQUIRES: pytest setuptools # 3.12+ no longer includes distutils, just always ensure setuptools is present
301+
CIBW_TEST_REQUIRES: pytest setuptools pip>=25.1 # 3.12+ no longer includes distutils, just always ensure setuptools is present
302302
CIBW_TEST_COMMAND: PYTHONUNBUFFERED=1 python -m pytest ${{ matrix.test_args || '{project}' }} # default to test all
303303
run: |
304304
set -eux

testing/cffi0/test_zintegration.py

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def create_venv(name):
3232
'-m',
3333
'pip',
3434
'install',
35+
'pip',
3536
'setuptools',
3637
'--upgrade'
3738
])

0 commit comments

Comments
 (0)