diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 98cd6dc..f090473 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,16 +11,16 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python 3.9 uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Build a source tarball run: python setup.py sdist - name: Build wheels uses: RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2014_x86_64 with: - python-versions: 'cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313' + python-versions: 'cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313 cp314-cp314' build-requirements: 'cython' - name: Clean linux_x86_64.whl run: rm dist/*-linux_x86_64.whl diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55ed924..3f062c0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - pyver: ["3.9", "3.10", "3.11", "3.12", "3.13"] + pyver: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index a3f4b31..4476a1d 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from glob import glob from setuptools import setup, Extension -version = "0.4.3" +version = "0.4.4" def readme(): @@ -30,6 +30,7 @@ def readme(): "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: Implementation :: CPython", "Development Status :: 5 - Production/Stable", "Operating System :: POSIX :: Linux", diff --git a/tox.ini b/tox.ini index 41aff92..3145eb5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py39, py310, py311, py312, py313 +envlist = py39, py310, py311, py312, py313, py314 [testenv] passenv = CC LD