Skip to content

Commit ecfd6b3

Browse files
committed
Declare support for Python 3.14
1 parent 5b3d4bc commit ecfd6b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
name-prefix: ['']
1414
os: [ubuntu-latest]
15-
python: [3.9, '3.10', 3.11, 3.12, 3.13, pypy-3.10]
15+
python: [3.9, '3.10', 3.11, 3.12, 3.13, 3.14-dev, pypy-3.10]
1616
include:
1717
# To keep the overall number of runs low, we test Windows and MacOS
1818
# only on the latest CPython.

NEWS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Unreleased
44
======================================================================
55

6-
Supports Python 3.9 – Python 3.x
6+
Supports Python 3.9 – Python 3.14
77

88
New Features
99
------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def run(self):
4343
version='0.0.0',
4444
setup_requires=["wheel"] + requires,
4545
install_requires=requires,
46-
python_requires=">= 3.9, < 3.14",
46+
python_requires=">= 3.9, < 3.15",
4747
entry_points={
4848
"console_scripts": [
4949
"hy = hy.cmdline:hy_main",

0 commit comments

Comments
 (0)