Skip to content

Commit 57e5ff7

Browse files
authored
build wheel for Python 3.14 (#144)
1 parent aad2dc9 commit 57e5ff7

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/setup-python@v3
1919

2020
- name: Install cibuildwheel
21-
run: python -m pip install cibuildwheel==2.21.3
21+
run: python -m pip install cibuildwheel==3.2.0
2222

2323
- name: Build wheels
2424
env:

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
14-
pyver: ["3.8", "3.9", "3.10", "3.11", "3.12"]
14+
pyver: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1515
compiler: ["gcc", "clang"]
1616
build_type: ["Debug", "Release"]
1717

@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-22.04
4444
strategy:
4545
matrix:
46-
pyver: ["3.8", "3.9", "3.10", "3.11", "3.12"]
46+
pyver: ["3.10", "3.11", "3.12", "3.13", "3.14"]
4747

4848
steps:
4949
- uses: actions/checkout@v2

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.13"
37-
__version__ = "1.4.13"
36+
__VERSION__ = "1.4.14"
37+
__version__ = "1.4.14"
3838
__author__ = "mckelvin"
3939
__email__ = "mckelvin@users.noreply.github.com"
4040
__date__ = "Fri Jun 7 06:16:00 2024 +0800"

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ def find_version(*file_paths):
8686
classifiers=[
8787
"Programming Language :: C++",
8888
"Programming Language :: Python",
89-
"Programming Language :: Python :: 2.7",
9089
"Programming Language :: Python :: 3",
91-
"Programming Language :: Python :: 3.6",
92-
"Programming Language :: Python :: 3.7",
93-
"Programming Language :: Python :: 3.8",
94-
"Programming Language :: Python :: 3.9",
90+
"Programming Language :: Python :: 3.10",
91+
"Programming Language :: Python :: 3.11",
92+
"Programming Language :: Python :: 3.12",
93+
"Programming Language :: Python :: 3.13",
94+
"Programming Language :: Python :: 3.14",
9595
"Programming Language :: Python :: Implementation :: CPython",
9696
"Development Status :: 5 - Production/Stable",
9797
"Operating System :: POSIX :: Linux",

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.13"
3+
const _Version = "1.4.14"
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)