Skip to content

Commit

Permalink
skip cp36 and pypy builds
Browse files Browse the repository at this point in the history
  • Loading branch information
bimalkjha committed Dec 30, 2024
1 parent e291947 commit 7618768
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/bld_wheels_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*-win_amd64"
CIBW_SKIP: "cp36-* pp*"

- uses: actions/[email protected]
with:
Expand All @@ -41,6 +42,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*-win32"
CIBW_SKIP: "cp36-* pp*"

- uses: actions/[email protected]
with:
Expand All @@ -59,7 +61,7 @@ jobs:
uses: pypa/[email protected]
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
Expand Down Expand Up @@ -90,7 +92,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: "cp37-* cp38-*"
CIBW_SKIP: "cp36-* pp*"
MACOSX_DEPLOYMENT_TARGET: 14.0

- name: Upload sdist
Expand All @@ -111,6 +113,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: "cp36-* pp*"
MACOSX_DEPLOYMENT_TARGET: 10.15

- name: Upload wheels as artifacts
Expand Down
2 changes: 1 addition & 1 deletion ibm_db.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
+--------------------------------------------------------------------------+
*/

#define MODULE_RELEASE "0.0.2"
#define MODULE_RELEASE "0.0.3"

#include <Python.h>
#include <datetime.h>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit 7618768

Please sign in to comment.