Skip to content

Commit ff6d17f

Browse files
authored
Merge pull request #32 from robert-scheck/python
Test using Python 3.14 (final) and PyPy 3.11
2 parents 8429ca3 + c086663 commit ff6d17f

2 files changed

Lines changed: 17 additions & 14 deletions

File tree

.github/workflows/python-package.yaml

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,31 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [ubuntu-20.04, ubuntu-24.04]
15-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14-dev', 'pypy3.9', 'pypy3.10']
14+
os: [ubuntu-22.04, ubuntu-24.04]
15+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', 'pypy3.9', 'pypy3.10', 'pypy3.11']
1616
exclude:
17-
- os: ubuntu-24.04
18-
python-version: 3.6
1917
- os: ubuntu-24.04
2018
python-version: 3.7
21-
- os: ubuntu-20.04
19+
- os: ubuntu-22.04
2220
python-version: 3.8
23-
- os: ubuntu-20.04
21+
- os: ubuntu-22.04
22+
python-version: 3.9
23+
- os: ubuntu-22.04
2424
python-version: 3.10
25-
- os: ubuntu-20.04
25+
- os: ubuntu-22.04
2626
python-version: 3.11
27-
- os: ubuntu-20.04
27+
- os: ubuntu-22.04
2828
python-version: 3.12
29-
- os: ubuntu-20.04
29+
- os: ubuntu-22.04
3030
python-version: 3.13
31-
- os: ubuntu-20.04
32-
python-version: 3.14-dev
33-
- os: ubuntu-20.04
31+
- os: ubuntu-22.04
32+
python-version: 3.14
33+
- os: ubuntu-22.04
3434
python-version: pypy3.9
35-
- os: ubuntu-20.04
35+
- os: ubuntu-22.04
3636
python-version: pypy3.10
37+
- os: ubuntu-22.04
38+
python-version: pypy3.11
3739
steps:
3840
- uses: actions/checkout@v4
3941
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@
7575
'Programming Language :: Python :: 3.10',
7676
'Programming Language :: Python :: 3.11',
7777
'Programming Language :: Python :: 3.12',
78-
'Programming Language :: Python :: 3.13'
78+
'Programming Language :: Python :: 3.13',
79+
'Programming Language :: Python :: 3.14'
7980
],
8081
tests_require=["mock;python_version<'3.3'", "coverage"],
8182
install_requires=["py-radix>=0.10.0"] + (

0 commit comments

Comments
 (0)