Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix wheel for pypy #132

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
4 changes: 2 additions & 2 deletions libmc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "[email protected]"
__date__ = "Fri Jun 7 06:16:00 2024 +0800"
Expand Down
2 changes: 1 addition & 1 deletion src/version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package golibmc

const _Version = "1.4.7"
const _Version = "1.4.8"
const _Author = "mckelvin"
const _Email = "[email protected]"
const _Date = "Fri Jun 7 06:16:00 2024 +0800"
Expand Down
Loading