Skip to content

Commit 5c15902

Browse files
authored
feat: support python 3.14 (#333)
1 parent 1fb8387 commit 5c15902

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- "3.11"
1515
- "3.12"
1616
- "3.13"
17+
- "3.14"
1718
steps:
1819
- name: Check out repository
1920
uses: actions/checkout@v4

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ htmlcov/
1313
*.py[co]
1414
.pytest_cache/
1515
.python-version
16+
venv/
17+
.venv/
1618

1719
.idea/
1820
.vscode/

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tasks:
77
# Upgrade pyenv itself
88
pyenv update
99
10-
export PY_VERSIONS="3.9 3.10 3.11 3.12 3.13"
10+
export PY_VERSIONS="3.9 3.10 3.11 3.12 3.13 3.14"
1111
1212
# Install all supported Python versions
1313
for py in $PY_VERSIONS;

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
3030
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3132
"Programming Language :: Python :: Implementation :: CPython",
3233
"Programming Language :: Python :: Implementation :: PyPy",
3334
"Typing :: Typed"

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-
py{39, 310, 311, 312, 313}
3+
py{39, 310, 311, 312, 313, 314}
44
pypy{39, 310}
55
pep8
66
packaging

0 commit comments

Comments
 (0)