From bf2eee34f0b277eb7b1e6aa2ac9fdb60d88adb27 Mon Sep 17 00:00:00 2001 From: Elephant Liu Date: Fri, 18 Oct 2024 19:20:04 +0800 Subject: [PATCH] fix wheel for pypy (#132) --- .github/workflows/publish.yml | 2 ++ libmc/__init__.py | 4 ++-- src/version.go | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 39b37fe3..6561a2d7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,6 +17,8 @@ jobs: run: python -m pip install cibuildwheel==2.21.3 - name: Build wheels + env: + CIBW_BEFORE_BUILD: pip install 'setuptools<72.2.0 ; implementation_name == "pypy"' run: python -m cibuildwheel --output-dir wheelhouse - name: Check build result run: ls -lh wheelhouse/ diff --git a/libmc/__init__.py b/libmc/__init__.py index 82bfbd7e..7052be49 100644 --- a/libmc/__init__.py +++ b/libmc/__init__.py @@ -33,8 +33,8 @@ __file__ as _libmc_so_file ) -__VERSION__ = "1.4.7" -__version__ = "1.4.7" +__VERSION__ = "1.4.8" +__version__ = "1.4.8" __author__ = "mckelvin" __email__ = "mckelvin@users.noreply.github.com" __date__ = "Fri Jun 7 06:16:00 2024 +0800" diff --git a/src/version.go b/src/version.go index a7188c59..083866eb 100644 --- a/src/version.go +++ b/src/version.go @@ -1,6 +1,6 @@ package golibmc -const _Version = "1.4.7" +const _Version = "1.4.8" const _Author = "mckelvin" const _Email = "mckelvin@users.noreply.github.com" const _Date = "Fri Jun 7 06:16:00 2024 +0800"