From c747c8c258dc427ebc33399e2f9d8c20874203a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 02:30:06 +0000 Subject: [PATCH 1/5] build(deps): bump pypa/cibuildwheel from 2.14.1 to 2.19.1 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.14.1 to 2.19.1. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v2.14.1...v2.19.1) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-publish-to-pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-publish-to-pypi.yml b/.github/workflows/build-and-publish-to-pypi.yml index b439f89..8555c12 100644 --- a/.github/workflows/build-and-publish-to-pypi.yml +++ b/.github/workflows/build-and-publish-to-pypi.yml @@ -44,7 +44,7 @@ jobs: echo "[build]`ncompiler=mingw32" | Out-File -Encoding ASCII ~/pydistutils.cfg - name: Build wheels - uses: pypa/cibuildwheel@v2.14.1 + uses: pypa/cibuildwheel@v2.19.1 env: # Disable building for PyPy and 32bit. CIBW_SKIP: pp* *-win32 *-manylinux_i686 From 83534352720b359f54f2e64615cf24b6efc90bb6 Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Wed, 26 Jun 2024 16:14:12 -0800 Subject: [PATCH 2/5] Update build-and-publish-to-pypi.yml --- .github/workflows/build-and-publish-to-pypi.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish-to-pypi.yml b/.github/workflows/build-and-publish-to-pypi.yml index 8555c12..32d83f0 100644 --- a/.github/workflows/build-and-publish-to-pypi.yml +++ b/.github/workflows/build-and-publish-to-pypi.yml @@ -48,10 +48,12 @@ jobs: env: # Disable building for PyPy and 32bit. CIBW_SKIP: pp* *-win32 *-manylinux_i686 - # Fix error for python 3.11 on macOS - CIBW_ENVIRONMENT_MACOS: SETUPTOOLS_USE_DISTUTILS=stdlib + + # # Fix error for python 3.11 on macOS + # CIBW_ENVIRONMENT_MACOS: SETUPTOOLS_USE_DISTUTILS=stdlib # Package the DLL dependencies in the wheel for windows (done by default for the other platforms). # delvewheel cannot mangle the libraries, stripping does not work. + CIBW_BEFORE_BUILD_MACOS: python -m pip install --upgrade pip CIBW_BEFORE_BUILD_WINDOWS: pip install delvewheel CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel show {wheel} && delvewheel repair -w {dest_dir} {wheel} --no-mangle-all" From 32b82c6381cf5eea5d676c80b6579c12d5bb8d67 Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Wed, 26 Jun 2024 16:31:46 -0800 Subject: [PATCH 3/5] Update build-and-publish-to-pypi.yml --- .github/workflows/build-and-publish-to-pypi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish-to-pypi.yml b/.github/workflows/build-and-publish-to-pypi.yml index 32d83f0..420835b 100644 --- a/.github/workflows/build-and-publish-to-pypi.yml +++ b/.github/workflows/build-and-publish-to-pypi.yml @@ -48,12 +48,12 @@ jobs: env: # Disable building for PyPy and 32bit. CIBW_SKIP: pp* *-win32 *-manylinux_i686 - # # Fix error for python 3.11 on macOS # CIBW_ENVIRONMENT_MACOS: SETUPTOOLS_USE_DISTUTILS=stdlib + CIBW_ENVIRONMENT_MACOS: MACOS_DEPLOYMENT_TARGET="13.0" + CIBW_BEFORE_BUILD_MACOS: python -m pip install --upgrade pip # Package the DLL dependencies in the wheel for windows (done by default for the other platforms). # delvewheel cannot mangle the libraries, stripping does not work. - CIBW_BEFORE_BUILD_MACOS: python -m pip install --upgrade pip CIBW_BEFORE_BUILD_WINDOWS: pip install delvewheel CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel show {wheel} && delvewheel repair -w {dest_dir} {wheel} --no-mangle-all" From 485790807d3dc4ddebb122115da1f6dc0331d231 Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Wed, 26 Jun 2024 16:34:10 -0800 Subject: [PATCH 4/5] Update build-and-publish-to-pypi.yml --- .github/workflows/build-and-publish-to-pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-publish-to-pypi.yml b/.github/workflows/build-and-publish-to-pypi.yml index 420835b..88940b1 100644 --- a/.github/workflows/build-and-publish-to-pypi.yml +++ b/.github/workflows/build-and-publish-to-pypi.yml @@ -50,7 +50,7 @@ jobs: CIBW_SKIP: pp* *-win32 *-manylinux_i686 # # Fix error for python 3.11 on macOS # CIBW_ENVIRONMENT_MACOS: SETUPTOOLS_USE_DISTUTILS=stdlib - CIBW_ENVIRONMENT_MACOS: MACOS_DEPLOYMENT_TARGET="13.0" + CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET="13.0" CIBW_BEFORE_BUILD_MACOS: python -m pip install --upgrade pip # Package the DLL dependencies in the wheel for windows (done by default for the other platforms). # delvewheel cannot mangle the libraries, stripping does not work. From 031c960e997ec5e415a6009bc4112a7f98b5c491 Mon Sep 17 00:00:00 2001 From: Zhang Yunjun Date: Thu, 27 Jun 2024 20:11:52 +0800 Subject: [PATCH 5/5] Update build-and-publish-to-pypi.yml --- .github/workflows/build-and-publish-to-pypi.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build-and-publish-to-pypi.yml b/.github/workflows/build-and-publish-to-pypi.yml index 88940b1..2fb6bf7 100644 --- a/.github/workflows/build-and-publish-to-pypi.yml +++ b/.github/workflows/build-and-publish-to-pypi.yml @@ -48,8 +48,6 @@ jobs: env: # Disable building for PyPy and 32bit. CIBW_SKIP: pp* *-win32 *-manylinux_i686 - # # Fix error for python 3.11 on macOS - # CIBW_ENVIRONMENT_MACOS: SETUPTOOLS_USE_DISTUTILS=stdlib CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET="13.0" CIBW_BEFORE_BUILD_MACOS: python -m pip install --upgrade pip # Package the DLL dependencies in the wheel for windows (done by default for the other platforms).