Skip to content

Commit bb47db2

Browse files
committed
Add support for Python 3.14
1 parent 2b43f63 commit bb47db2

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/execute-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: true
2323
matrix:
24-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
24+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2525
name: Python ${{ matrix.python-version }}
2626

2727
defaults:

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
python 3.13.1
1+
python 3.13.3
22
poetry 1.8.5

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,15 @@ classifiers = [
3737
"Programming Language :: Python :: 3.11",
3838
"Programming Language :: Python :: 3.12",
3939
"Programming Language :: Python :: 3.13",
40+
"Programming Language :: Python :: 3.14",
4041
"Topic :: Software Development :: Documentation",
4142
"Topic :: Text Editors :: Documentation",
4243
"Topic :: Text Processing :: Markup",
4344
]
4445

4546
[tool.poetry.dependencies]
4647

47-
python = "<3.14,>=3.9"
48+
python = "<=3.14,>=3.9"
4849

4950
pyyaml = "^6.0"
5051
markdown = "^3.3.3"

0 commit comments

Comments
 (0)