Skip to content

Commit 86f53d8

Browse files
committed
feat: Add support for Python 3.14
1 parent b06937b commit 86f53d8

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

.github/workflows/build_and_deploy_docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
NODE_VERSION: 20
13-
PYTHON_VERSION: 3.13
13+
PYTHON_VERSION: 3.14
1414

1515
jobs:
1616
build_and_deploy_docs:

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,21 @@ jobs:
4747
name: Lint check
4848
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
4949
with:
50-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
50+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
5151

5252
type_check:
5353
name: Type check
5454
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
5555
with:
56-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
56+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
5757

5858
unit_tests:
5959
name: Unit tests
6060
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
6161
secrets:
6262
httpbin_url: ${{ secrets.APIFY_HTTPBIN_TOKEN && format('https://httpbin.apify.actor?token={0}', secrets.APIFY_HTTPBIN_TOKEN) || 'https://httpbin.org'}}
6363
with:
64-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
64+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
6565

6666
update_changelog:
6767
name: Update changelog

.github/workflows/run_code_checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ jobs:
2121
name: Lint check
2222
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
2323
with:
24-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
24+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
2525

2626
type_check:
2727
name: Type check
2828
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
2929
with:
30-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
30+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
3131

3232
unit_tests:
3333
name: Unit tests
3434
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
3535
secrets:
3636
httpbin_url: ${{ secrets.APIFY_HTTPBIN_TOKEN && format('https://httpbin.apify.actor?token={0}', secrets.APIFY_HTTPBIN_TOKEN) || 'https://httpbin.org'}}
3737
with:
38-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
38+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
3939

4040
docs_check:
4141
name: Docs check

.github/workflows/templates_e2e_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
NODE_VERSION: 22
10-
PYTHON_VERSION: 3.13
10+
PYTHON_VERSION: 3.14
1111

1212
jobs:
1313
end_to_end_tests:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
2222
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
2324
"Topic :: Software Development :: Libraries",
2425
]
2526
keywords = [
@@ -35,7 +36,7 @@ keywords = [
3536
dependencies = [
3637
"cachetools>=5.5.0",
3738
"colorama>=0.4.0",
38-
"impit>=0.6.1",
39+
"impit>=0.8.0",
3940
"more-itertools>=10.2.0",
4041
"protego>=0.5.0",
4142
"psutil>=6.0.0",

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)