Skip to content

Commit 6411079

Browse files
committed
Add Python 3.14
1 parent 364e2bf commit 6411079

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
strategy:
135135
fail-fast: false
136136
matrix:
137-
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, 3.13]
137+
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, 3.13, 3.14]
138138

139139
steps:
140140
- uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
raise RuntimeError('On Python 3, Supervisor requires Python 3.4 or later')
2424

2525
# setuptools is required as a runtime dependency only on Python < 3.8.
26-
# See the comments in supervisor/compat.py. An environment marker
26+
# See the comments in supervisor/compat.py. An environment marker
2727
# like "setuptools; python_version < '3.8'" is not used here because
2828
# it breaks installation via "python setup.py install". See also the
2929
# discussion at: https://github.com/Supervisor/supervisor/issues/1692
@@ -72,6 +72,7 @@
7272
"Programming Language :: Python :: 3.11",
7373
"Programming Language :: Python :: 3.12",
7474
"Programming Language :: Python :: 3.13",
75+
"Programming Language :: Python :: 3.14",
7576
]
7677

7778
version_txt = os.path.join(here, 'supervisor/version.txt')

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
cover,cover3,docs,py27,py34,py35,py36,py37,py38,py39,py310,py311,py312,py313
3+
cover,cover3,docs,py27,py34,py35,py36,py37,py38,py39,py310,py311,py312,py313,py314
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)