Skip to content

Commit 1346675

Browse files
committed
Test with newer Python versions
1 parent f686045 commit 1346675

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
submodules: recursive
1111
- uses: actions/setup-python@v1
1212
with:
13-
python-version: 3.8
13+
python-version: 3.14
1414
- name: Run lint
1515
run: |
1616
python -m pip install tox
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: [ubuntu-latest, macos-latest, windows-latest]
25-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
25+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2626
steps:
2727
- name: Set git to use LF on Windows
2828
if: runner.os == 'Windows'

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,5 +119,7 @@ def finalize_options(self):
119119
"Programming Language :: Python :: 3.10",
120120
"Programming Language :: Python :: 3.11",
121121
"Programming Language :: Python :: 3.12",
122+
"Programming Language :: Python :: 3.13",
123+
"Programming Language :: Python :: 3.14",
122124
]
123125
)

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, py312, pypy, lint
2+
envlist = py37, py38, py39, py310, py311, py312, py313, py314, pypy, lint
33

44
[testenv]
55
deps= -r{toxinidir}/test_requirements.txt

0 commit comments

Comments
 (0)