Skip to content

Commit e93dce9

Browse files
authored
Merge pull request #538 from jdepoix/feature/python3.14
added support for python 3.14
2 parents de0bb58 + d51fdda commit e93dce9

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
34+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
3535

3636
steps:
3737
- uses: actions/checkout@v4
@@ -63,7 +63,7 @@ jobs:
6363
uses: coverallsapp/github-action@v2
6464
with:
6565
parallel-finished: true
66-
carryforward: "run-python-3.8,run-python-3.9,run-python-3.10,run-python-3.11,run-python-3.12,run-python-3.13"
66+
carryforward: "run-python-3.8,run-python-3.9,run-python-3.10,run-python-3.11,run-python-3.12,run-python-3.13,run-python-3.14"
6767
- uses: actions/checkout@v4
6868
- name: Set up Python 3.9
6969
uses: actions/setup-python@v5

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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ classifiers = [
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
36+
"Programming Language :: Python :: 3.14",
3537
]
3638

3739
[tool.poetry.scripts]
@@ -47,7 +49,7 @@ lint = "ruff check youtube_transcript_api"
4749
precommit.shell = "poe format && poe lint && poe coverage"
4850

4951
[tool.poetry.dependencies]
50-
python = ">=3.8,<3.14"
52+
python = ">=3.8,<3.15"
5153
requests = "*"
5254
defusedxml = "^0.7.1"
5355

0 commit comments

Comments
 (0)