We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54b62f9 commit 1518555Copy full SHA for 1518555
.github/workflows/ci.yaml
@@ -298,7 +298,7 @@ jobs:
298
CIBW_MUSLLINUX_AARCH64_IMAGE: ${{ matrix.musllinux_img || 'musllinux_1_1' }}
299
CIBW_PRERELEASE_PYTHONS: 'True'
300
CIBW_FREE_THREADED_SUPPORT: 'True'
301
- CIBW_TEST_REQUIRES: pytest setuptools # 3.12+ no longer includes distutils, just always ensure setuptools is present
+ CIBW_TEST_REQUIRES: pytest setuptools pip>=25.1 # 3.12+ no longer includes distutils, just always ensure setuptools is present
302
CIBW_TEST_COMMAND: PYTHONUNBUFFERED=1 python -m pytest ${{ matrix.test_args || '{project}' }} # default to test all
303
run: |
304
set -eux
testing/cffi0/test_zintegration.py
@@ -32,6 +32,7 @@ def create_venv(name):
32
'-m',
33
'pip',
34
'install',
35
+ 'pip',
36
'setuptools',
37
'--upgrade'
38
])
0 commit comments