Skip to content

Commit

Permalink
Merge pull request #28 from robert-scheck/python-3.14
Browse files Browse the repository at this point in the history
Test using Python 3.13 and 3.14
  • Loading branch information
job authored Nov 16, 2024
2 parents 41fe794 + 89e403a commit e3f965f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/python-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,25 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-20.04, ubuntu-24.04]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14-dev']
exclude:
- os: macos-latest
- os: ubuntu-24.04
python-version: 3.6
- os: ubuntu-24.04
python-version: 3.7
- os: macos-latest
- os: ubuntu-20.04
python-version: 3.8
- os: macos-latest
- os: ubuntu-20.04
python-version: 3.10
- os: macos-latest
- os: ubuntu-20.04
python-version: 3.11
- os: macos-latest
- os: ubuntu-20.04
python-version: 3.12
- os: ubuntu-20.04
python-version: 3.13
- os: ubuntu-20.04
python-version: 3.14-dev
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
],
tests_require=["mock;python_version<'3.3'", "coverage"],
install_requires=["py-radix==0.10.0"] + (
Expand Down

0 comments on commit e3f965f

Please sign in to comment.