Skip to content

Commit e3f965f

Browse files
authored
Merge pull request #28 from robert-scheck/python-3.14
Test using Python 3.13 and 3.14
2 parents 41fe794 + 89e403a commit e3f965f

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

.github/workflows/python-package.yaml

+13-7
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,25 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [ubuntu-latest, macos-latest]
15-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
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']
1616
exclude:
17-
- os: macos-latest
17+
- os: ubuntu-24.04
18+
python-version: 3.6
19+
- os: ubuntu-24.04
1820
python-version: 3.7
19-
- os: macos-latest
21+
- os: ubuntu-20.04
2022
python-version: 3.8
21-
- os: macos-latest
23+
- os: ubuntu-20.04
2224
python-version: 3.10
23-
- os: macos-latest
25+
- os: ubuntu-20.04
2426
python-version: 3.11
25-
- os: macos-latest
27+
- os: ubuntu-20.04
2628
python-version: 3.12
29+
- os: ubuntu-20.04
30+
python-version: 3.13
31+
- os: ubuntu-20.04
32+
python-version: 3.14-dev
2733
steps:
2834
- uses: actions/checkout@v4
2935
- name: Set up Python ${{ matrix.python-version }}

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@
7474
'Programming Language :: Python :: 3.9',
7575
'Programming Language :: Python :: 3.10',
7676
'Programming Language :: Python :: 3.11',
77-
'Programming Language :: Python :: 3.12'
77+
'Programming Language :: Python :: 3.12',
78+
'Programming Language :: Python :: 3.13'
7879
],
7980
tests_require=["mock;python_version<'3.3'", "coverage"],
8081
install_requires=["py-radix==0.10.0"] + (

0 commit comments

Comments
 (0)