diff --git a/.github/workflows/bld_wheels_and_upload.yml b/.github/workflows/bld_wheels_and_upload.yml index 1d3a6b2e..a7e4081e 100644 --- a/.github/workflows/bld_wheels_and_upload.yml +++ b/.github/workflows/bld_wheels_and_upload.yml @@ -61,7 +61,7 @@ jobs: uses: pypa/cibuildwheel@v2.22.0 env: CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 - CIBW_SKIP: "cp36-* *-musllinux_* pp* *-*linux_{aarch64,ppc64le}" + CIBW_SKIP: "cp36-* pp* *-*linux_{aarch64}" CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair --exclude libdb2.so.1 @@ -92,7 +92,7 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v2.22.0 env: - CIBW_SKIP: "cp36-* pp*" + CIBW_SKIP: "cp36-* cp37-* cp38-* pp*" MACOSX_DEPLOYMENT_TARGET: 14.0 - name: Upload sdist diff --git a/README.md b/README.md index 0cd3c03d..fbbe4bfb 100644 --- a/README.md +++ b/README.md @@ -444,7 +444,7 @@ If you intend to install the clidriver manually, Following are the details of th |AIX | ppc |aix32_odbc_cli.tar.gz | Yes | V11.5.9 | | | others |aix64_odbc_cli.tar.gz | Yes | V11.5.9 | |Darwin | x64 |macos64_odbc_cli.tar.gz | Yes | Till V11.5.9 | - | arm64 |macarm64_odbc_cli.tar.gz | Yes | From V12.1.0 | +| | arm64 |macarm64_odbc_cli.tar.gz | Yes | From V12.1.0 | |Linux | x64 |linuxx64_odbc_cli.tar.gz | Yes | V11.5.9 | | | s390x |s390x64_odbc_cli.tar.gz | Yes | V11.5.9 | | | s390 |s390_odbc_cli.tar.gz | Yes | V11.1 | diff --git a/ibm_db.c b/ibm_db.c index ce0ad953..64973cc6 100644 --- a/ibm_db.c +++ b/ibm_db.c @@ -22,7 +22,7 @@ +--------------------------------------------------------------------------+ */ -#define MODULE_RELEASE "0.0.3" +#define MODULE_RELEASE "0.0.4" #include #include diff --git a/setup.py b/setup.py index 813323b1..1b151ddc 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ from setuptools.command.install import install PACKAGE = 'ibm_db2' -VERSION = '0.0.3' +VERSION = '0.0.4' LICENSE = 'Apache License 2.0' readme = os.path.join(os.path.dirname(__file__),'README.md')