Skip to content

Commit e5ce0d6

Browse files
authored
feat: support python 3.14 (#269)
1 parent 155b219 commit e5ce0d6

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
inputs: {}
88
env:
9-
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-*"
9+
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-* cp314-*"
1010
jobs:
1111

1212
Build-Linux:
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
platforms: arm64
2828
- name: Build wheels
29-
uses: pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7
29+
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
3030
env:
3131
CIBW_ENVIRONMENT: PATH=$(pwd)/go/bin:$PATH
3232
CIBW_BEFORE_ALL: sh ci-setup-golang.sh
@@ -50,7 +50,7 @@ jobs:
5050
cache: true
5151
cache-dependency-path: "gotfparse/go.sum"
5252
- name: Build wheels
53-
uses: pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7
53+
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
5454
env:
5555
CGO_ENABLED: 1
5656
CIBW_ARCHS: AMD64
@@ -79,7 +79,7 @@ jobs:
7979
cache: true
8080
cache-dependency-path: "gotfparse/go.sum"
8181
- name: Build wheels
82-
uses: pypa/cibuildwheel@5f22145df44122af0f5a201f93cf0207171beca7
82+
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
8383
env:
8484
CGO_ENABLED: 1
8585
CIBW_ARCHS: ${{ matrix.cibw_arch }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
runs-on: ${{ matrix.runner }}
9999
strategy:
100100
matrix:
101-
python-version: ["3.10", "3.11", "3.12", "3.13"]
101+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
102102
runner: ["ubuntu-latest", "windows-latest", "macos-latest"]
103103
exclude:
104104
# just conserving runners by excluding older versions

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
3030
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3132
],
3233
packages=find_packages(),
3334
install_requires=["cffi>=1.0.0"],

0 commit comments

Comments
 (0)