Skip to content

Commit 84921c7

Browse files
committed
fix: update workflow file to skip building free threaded wheels
1 parent 0199c24 commit 84921c7

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/bld_wheels_and_upload.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: pypa/cibuildwheel@v3.4.1
2525
env:
2626
CIBW_BUILD: "*-win_amd64"
27-
CIBW_SKIP: "cp38-*"
27+
CIBW_SKIP: "cp38-* *t-*"
2828

2929
- name: Inject ibm_db_dll.pth into wheels
3030
run: python scripts/inject_pth_into_wheel.py wheelhouse
@@ -47,7 +47,7 @@ jobs:
4747
uses: pypa/cibuildwheel@v3.1.4
4848
env:
4949
CIBW_BUILD: "*-win32"
50-
CIBW_SKIP: "cp38-*"
50+
CIBW_SKIP: "cp38-* *t-*"
5151

5252
- name: Inject ibm_db_dll.pth into wheels
5353
run: python scripts/inject_pth_into_wheel.py wheelhouse
@@ -72,7 +72,7 @@ jobs:
7272
CIBW_ARCHS_LINUX: "x86_64 i686"
7373
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
7474
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
75-
CIBW_SKIP: "cp38-* *-musllinux_* *-*linux_{aarch64,ppc64le}"
75+
CIBW_SKIP: "cp38-* *t-* *-musllinux_* *-*linux_{aarch64,ppc64le}"
7676
CIBW_REPAIR_WHEEL_COMMAND_LINUX:
7777
auditwheel repair
7878
--exclude libdb2.so.1
@@ -104,7 +104,7 @@ jobs:
104104
- name: Build wheels
105105
uses: pypa/cibuildwheel@v3.4.1
106106
env:
107-
CIBW_SKIP: "cp38-*"
107+
CIBW_SKIP: "cp38-* *t-*"
108108
MACOSX_DEPLOYMENT_TARGET: 14.0
109109

110110
- uses: actions/upload-artifact@v6
@@ -125,7 +125,7 @@ jobs:
125125
uses: pypa/cibuildwheel@v3.4.1
126126
env:
127127
CIBW_ARCHS: "x86_64"
128-
CIBW_SKIP: "cp38-*"
128+
CIBW_SKIP: "cp38-* *t-*"
129129
MACOSX_DEPLOYMENT_TARGET: 10.15
130130

131131
- uses: actions/upload-artifact@v6
@@ -181,3 +181,7 @@ jobs:
181181
- name: Publish distribution to PyPI
182182
if: startsWith(github.ref, 'refs/tags')
183183
uses: pypa/gh-action-pypi-publish@release/v1.13
184+
with:
185+
verbose: true
186+
skip-existing: true
187+
attestations: false

0 commit comments

Comments
 (0)