|
10 | 10 | CIBW_BEFORE_TEST: "pip install -r {project}/test-requirements.txt" |
11 | 11 | CIBW_BEFORE_BUILD_LINUX: "rm -rf ~/.pyxbld && rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux && yum install -y libffi-devel libev libev-devel openssl openssl-devel" |
12 | 12 | CIBW_ENVIRONMENT: "CASS_DRIVER_BUILD_CONCURRENCY=2 CFLAGS='-g0 -O3'" |
13 | | - CIBW_SKIP: cp35* cp36* cp37* pp*i686 *musllinux* |
| 13 | + CIBW_SKIP: cp36* cp37* pp*i686 *musllinux* |
14 | 14 | CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 |
15 | 15 | CIBW_MANYLINUX_PYPY_X86_64_IMAGE: manylinux_2_28 |
16 | 16 | CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28 |
@@ -51,15 +51,16 @@ jobs: |
51 | 51 |
|
52 | 52 | - uses: actions/setup-python@v5 |
53 | 53 | name: Install Python |
54 | | - |
| 54 | + with: |
| 55 | + python-version: '3.13' |
55 | 56 | - name: Enable pip installing globally |
56 | 57 | if: runner.os == 'MacOs' || runner.os == 'Windows' |
57 | 58 | run: | |
58 | 59 | echo "PIP_BREAK_SYSTEM_PACKAGES=1" >> $GITHUB_ENV |
59 | 60 |
|
60 | 61 | - name: Install cibuildwheel |
61 | 62 | run: | |
62 | | - python3 -m pip install cibuildwheel==2.16.2 |
| 63 | + python3 -m pip install cibuildwheel==2.22.0 |
63 | 64 |
|
64 | 65 | - name: Install OpenSSL for Windows |
65 | 66 | if: runner.os == 'Windows' |
@@ -106,8 +107,9 @@ jobs: |
106 | 107 | - name: Overwrite for MacOs |
107 | 108 | if: runner.os == 'MacOs' && matrix.platform == 'all' |
108 | 109 | run: | |
109 | | - echo "CIBW_BUILD=cp38* cp39* cp310* cp311* cp312*" >> $GITHUB_ENV |
| 110 | + echo "CIBW_BUILD=cp39* cp310* cp311* cp312* cp313*" >> $GITHUB_ENV |
110 | 111 | echo "CIBW_BEFORE_TEST_MACOS=pip install -r {project}/test-requirements.txt pytest" >> $GITHUB_ENV |
| 112 | + echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV |
111 | 113 |
|
112 | 114 | - name: Overwrite for MacOs PyPy |
113 | 115 | if: runner.os == 'MacOs' && matrix.platform == 'PyPy' |
@@ -167,10 +169,12 @@ jobs: |
167 | 169 |
|
168 | 170 | - uses: actions/setup-python@v5 |
169 | 171 | name: Install Python |
| 172 | + with: |
| 173 | + python-version: '3.13' |
170 | 174 |
|
171 | 175 | - name: Install cibuildwheel |
172 | 176 | run: | |
173 | | - python -m pip install cibuildwheel==2.16.2 |
| 177 | + python -m pip install cibuildwheel==2.20.0 |
174 | 178 |
|
175 | 179 | - name: Build wheels |
176 | 180 | env: |
|
0 commit comments