From 76187681f157bda11c6cd47728f087aa9829b7fb Mon Sep 17 00:00:00 2001 From: Bimal Jha Date: Mon, 30 Dec 2024 20:27:31 +0530 Subject: [PATCH] skip cp36 and pypy builds --- .github/workflows/bld_wheels_and_upload.yml | 7 +++++-- ibm_db.c | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bld_wheels_and_upload.yml b/.github/workflows/bld_wheels_and_upload.yml index ffdff85a..1d3a6b2e 100644 --- a/.github/workflows/bld_wheels_and_upload.yml +++ b/.github/workflows/bld_wheels_and_upload.yml @@ -23,6 +23,7 @@ jobs: uses: pypa/cibuildwheel@v2.22.0 env: CIBW_BUILD: "*-win_amd64" + CIBW_SKIP: "cp36-* pp*" - uses: actions/upload-artifact@v4.4.3 with: @@ -41,6 +42,7 @@ jobs: uses: pypa/cibuildwheel@v2.22.0 env: CIBW_BUILD: "*-win32" + CIBW_SKIP: "cp36-* pp*" - uses: actions/upload-artifact@v4.4.3 with: @@ -59,7 +61,7 @@ jobs: uses: pypa/cibuildwheel@v2.22.0 env: CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 - CIBW_SKIP: "*-musllinux_* *-*linux_{aarch64}" + CIBW_SKIP: "cp36-* *-musllinux_* pp* *-*linux_{aarch64,ppc64le}" CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair --exclude libdb2.so.1 @@ -90,7 +92,7 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v2.22.0 env: - CIBW_SKIP: "cp37-* cp38-*" + CIBW_SKIP: "cp36-* pp*" MACOSX_DEPLOYMENT_TARGET: 14.0 - name: Upload sdist @@ -111,6 +113,7 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v2.22.0 env: + CIBW_SKIP: "cp36-* pp*" MACOSX_DEPLOYMENT_TARGET: 10.15 - name: Upload wheels as artifacts diff --git a/ibm_db.c b/ibm_db.c index 98572fdb..ce0ad953 100644 --- a/ibm_db.c +++ b/ibm_db.c @@ -22,7 +22,7 @@ +--------------------------------------------------------------------------+ */ -#define MODULE_RELEASE "0.0.2" +#define MODULE_RELEASE "0.0.3" #include #include diff --git a/setup.py b/setup.py index 22907527..813323b1 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ from setuptools.command.install import install PACKAGE = 'ibm_db2' -VERSION = '0.0.2' +VERSION = '0.0.3' LICENSE = 'Apache License 2.0' readme = os.path.join(os.path.dirname(__file__),'README.md')