Skip to content

Commit c31a0c9

Browse files
authored
add pypy 3.11 wheels
1 parent 675e270 commit c31a0c9

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

.github/workflows/releasebuild.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- uses: actions/setup-python@v5
8383

8484
- name: Build wheels
85-
uses: pypa/cibuildwheel@v2.22.0
85+
uses: pypa/cibuildwheel@v2.23.0
8686
with:
8787
package-dir: rapidfuzz.tar.gz
8888
output-dir: wheelhouse
@@ -122,7 +122,7 @@ jobs:
122122
run: cp dist/*.tar.gz rapidfuzz.tar.gz
123123

124124
- name: Build wheels
125-
uses: pypa/cibuildwheel@v2.22.0
125+
uses: pypa/cibuildwheel@v2.23.0
126126
with:
127127
package-dir: rapidfuzz.tar.gz
128128
output-dir: wheelhouse
@@ -141,17 +141,21 @@ jobs:
141141
fail-fast: false
142142
matrix:
143143
arch: [auto, aarch64, ppc64le, s390x]
144-
python_tag: ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*", "pp39-*", "pp310-*"]
144+
python_tag: ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*", "pp39-*", "pp310-*", "pp311-*"]
145145
exclude:
146146
# PyPy builds not available for these platforms
147147
- arch: ppc64le
148148
python_tag: "pp39-*"
149149
- arch: ppc64le
150150
python_tag: "pp310-*"
151+
- arch: ppc64le
152+
python_tag: "pp311-*"
151153
- arch: s390x
152154
python_tag: "pp39-*"
153155
- arch: s390x
154156
python_tag: "pp310-*"
157+
- arch: s390x
158+
python_tag: "pp311-*"
155159
env:
156160
CIBW_ARCHS_LINUX: ${{matrix.arch}}
157161
CIBW_BUILD: ${{matrix.python_tag}}
@@ -182,7 +186,7 @@ jobs:
182186
image: tonistiigi/binfmt:qemu-v8.1.5
183187

184188
- name: Build wheel
185-
uses: pypa/cibuildwheel@v2.22.0
189+
uses: pypa/cibuildwheel@v2.23.0
186190
with:
187191
package-dir: rapidfuzz.tar.gz
188192
output-dir: wheelhouse
@@ -217,7 +221,7 @@ jobs:
217221
run: cp dist/*.tar.gz rapidfuzz.tar.gz
218222

219223
- name: Build wheel
220-
uses: pypa/cibuildwheel@v2.22.0
224+
uses: pypa/cibuildwheel@v2.23.0
221225
with:
222226
package-dir: rapidfuzz.tar.gz
223227
output-dir: wheelhouse

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
---------
33

4+
[3.12.2] -
5+
^^^^^^^^^^^^^^^^^^^^^
6+
Added
7+
~~~~~
8+
* added wheels for pypy 3.11
9+
410
[3.12.1] - 2025-01-30
511
^^^^^^^^^^^^^^^^^^^^^
612
Fixed

src/rapidfuzz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
__author__: str = "Max Bachmann"
88
__license__: str = "MIT"
9-
__version__: str = "3.12.1"
9+
__version__: str = "3.12.2"
1010

1111
from rapidfuzz import distance, fuzz, process, utils
1212

0 commit comments

Comments
 (0)