Skip to content

Commit 0fb6085

Browse files
authored
Merge pull request #206 from rtibblesbot/issue-205-3bc71a
Add Python 3.14 support
2 parents affd8b1 + 8150c6c commit 0fb6085

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/pythontest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
max-parallel: 5
2828
matrix:
29-
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
29+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
3030
steps:
3131
- uses: actions/checkout@v6
3232
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}

requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest==6.2.5
1+
pytest>=6.2.5,<8
22
jsonschema==3.2.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
],
3030
author="Learning Equality",
3131
author_email="info@learningequality.org",
32-
python_requires=">=3.6, <3.14",
32+
python_requires=">=3.6, <3.15",
3333
)

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13}
2+
envlist = py{3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13,3.14}
33

44
[testenv]
55
basepython =
@@ -11,6 +11,7 @@ basepython =
1111
py3.11: python3.11
1212
py3.12: python3.12
1313
py3.13: python3.13
14+
py3.14: python3.14
1415
deps = -r{toxinidir}/requirements-test.txt
1516
setenv =
1617
PYTHONPATH = {toxinidir}

0 commit comments

Comments
 (0)