Skip to content

Commit bf2eee3

Browse files
authored
fix wheel for pypy (#132)
1 parent 6d904a1 commit bf2eee3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
run: python -m pip install cibuildwheel==2.21.3
1818

1919
- name: Build wheels
20+
env:
21+
CIBW_BEFORE_BUILD: pip install 'setuptools<72.2.0 ; implementation_name == "pypy"'
2022
run: python -m cibuildwheel --output-dir wheelhouse
2123
- name: Check build result
2224
run: ls -lh wheelhouse/

libmc/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
__file__ as _libmc_so_file
3434
)
3535

36-
__VERSION__ = "1.4.7"
37-
__version__ = "1.4.7"
36+
__VERSION__ = "1.4.8"
37+
__version__ = "1.4.8"
3838
__author__ = "mckelvin"
3939
__email__ = "mckelvin@users.noreply.github.com"
4040
__date__ = "Fri Jun 7 06:16:00 2024 +0800"

src/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package golibmc
22

3-
const _Version = "1.4.7"
3+
const _Version = "1.4.8"
44
const _Author = "mckelvin"
55
const _Email = "mckelvin@users.noreply.github.com"
66
const _Date = "Fri Jun 7 06:16:00 2024 +0800"

0 commit comments

Comments
 (0)