Skip to content

Commit 2030248

Browse files
authored
Add support for Python 3.14 (#54)
1 parent ee7de9f commit 2030248

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
- "3.11"
7474
- "3.12"
7575
- "3.13"
76+
- "3.14"
7677
include:
7778
- python: "3.9"
7879
os: "macos"
@@ -88,6 +89,7 @@ jobs:
8889
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
8990
with:
9091
python-version: "${{ matrix.python }}"
92+
allow-prereleases: true
9193

9294
- name: "Install dependencies"
9395
run: |

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ These are changes to Cog over time.
2121
Unreleased
2222
----------
2323

24-
Nothing yet.
24+
- Added support for Python 3.14.
2525

2626

2727
3.5.1 – June 10 2025

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
1818
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
1920
"Topic :: Software Development :: Code Generators",
2021
]
2122
requires-python = ">= 3.9"

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# tox configuration for Cog.
22

33
[tox]
4-
envlist = py39,py310,py311,py312,py313,coverage
4+
envlist = py39,py310,py311,py312,py313,py314,coverage
55

66
[testenv]
77
deps =
@@ -26,3 +26,4 @@ python =
2626
3.11 = py311
2727
3.12 = py312
2828
3.13 = py313
29+
3.14 = py314

0 commit comments

Comments
 (0)