Skip to content

Commit 2b9f1c5

Browse files
authored
Support Python 3.13 and drop Python 3.8 (#29)
1 parent 1130b33 commit 2b9f1c5

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Build wheels
2121
uses: RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2014_x86_64
2222
with:
23-
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
23+
python-versions: 'cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 cp313-cp313'
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: 2 additions & 2 deletions
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.7", "3.8", "3.9", "3.10", "3.11"]
14+
pyver: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1515

1616
steps:
1717
- uses: actions/checkout@v2
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ${{ matrix.pyver }}
2222
- name: Install python dependencies
2323
run: |
24-
python -m pip install --upgrade pip
24+
python -m pip install --upgrade pip setuptools
2525
pip install 'Cython' 'tox<4'
2626
2727
- name: Run unittest

setup.py

Lines changed: 3 additions & 3 deletions
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.2"
4+
version = "0.4.3"
55

66

77
def readme():
@@ -25,11 +25,11 @@ def readme():
2525
"Programming Language :: C",
2626
"Programming Language :: Cython",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.7",
29-
"Programming Language :: Python :: 3.8",
3028
"Programming Language :: Python :: 3.9",
3129
"Programming Language :: Python :: 3.10",
3230
"Programming Language :: Python :: 3.11",
31+
"Programming Language :: Python :: 3.12",
32+
"Programming Language :: Python :: 3.13",
3333
"Programming Language :: Python :: Implementation :: CPython",
3434
"Development Status :: 5 - Production/Stable",
3535
"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 = py37, py38, py39, py310, py311
2+
envlist = py39, py310, py311, py312, py313
33

44
[testenv]
55
passenv = CC LD

0 commit comments

Comments
 (0)