We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54b62f9 commit 28ca0f7Copy full SHA for 28ca0f7
.github/workflows/ci.yaml
@@ -417,6 +417,8 @@ jobs:
417
env:
418
CIBW_BUILD: ${{ matrix.spec }}
419
CIBW_PRERELEASE_PYTHONS: 'True'
420
+ # Temporary, until virtualenv has pip >= 25.1 by default
421
+ CIBW_DEPENDENCY_VERSIONS: 'latest'
422
CIBW_TEST_REQUIRES: pytest setuptools
423
CIBW_TEST_COMMAND: pip install pip --upgrade; cd {project}; PYTHONUNBUFFERED=1 pytest
424
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.deployment_target || '10.9' }}
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