Skip to content

Commit a91fc22

Browse files
authored
suport Python 3.14 (#31)
1 parent 2b9f1c5 commit a91fc22

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Set up Python 3.8
14+
- name: Set up Python 3.9
1515
uses: actions/setup-python@v2
1616
with:
17-
python-version: 3.8
17+
python-version: 3.9
1818
- name: Build a source tarball
1919
run: python setup.py sdist
2020
- name: Build wheels
2121
uses: RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2014_x86_64
2222
with:
23-
python-versions: 'cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313'
23+
python-versions: 'cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313 cp314-cp314'
2424
build-requirements: 'cython'
2525
- name: Clean linux_x86_64.whl
2626
run: rm dist/*-linux_x86_64.whl

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
pyver: ["3.9", "3.10", "3.11", "3.12", "3.13"]
14+
pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1515

1616
steps:
1717
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from glob import glob
22
from setuptools import setup, Extension
33

4-
version = "0.4.3"
4+
version = "0.4.4"
55

66

77
def readme():
@@ -30,6 +30,7 @@ def readme():
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
3232
"Programming Language :: Python :: 3.13",
33+
"Programming Language :: Python :: 3.14",
3334
"Programming Language :: Python :: Implementation :: CPython",
3435
"Development Status :: 5 - Production/Stable",
3536
"Operating System :: POSIX :: Linux",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39, py310, py311, py312, py313
2+
envlist = py39, py310, py311, py312, py313, py314
33

44
[testenv]
55
passenv = CC LD

0 commit comments

Comments
 (0)