Skip to content

Commit dcec89a

Browse files
committed
feat: Add support for Python 3.14
1 parent cb60a4e commit dcec89a

File tree

6 files changed

+64
-58
lines changed

6 files changed

+64
-58
lines changed

.github/workflows/build_and_deploy_docs.yaml

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

99
env:
1010
NODE_VERSION: 22
11-
PYTHON_VERSION: 3.13
11+
PYTHON_VERSION: 3.14
1212

1313
jobs:
1414
build_and_deploy_docs:

.github/workflows/pre_release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,19 @@ jobs:
3636
name: Lint check
3737
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
3838
with:
39-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
39+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
4040

4141
type_check:
4242
name: Type check
4343
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
4444
with:
45-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
45+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
4646

4747
unit_tests:
4848
name: Unit tests
4949
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
5050
with:
51-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
51+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
5252

5353
integration_tests:
5454
name: Integration tests

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,19 @@ 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
with:
62-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
62+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
6363

6464
update_changelog:
6565
name: Update changelog

.github/workflows/run_code_checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ jobs:
1616
name: Lint check
1717
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
1818
with:
19-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
19+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
2020

2121
type_check:
2222
name: Type check
2323
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
2424
with:
25-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
25+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
2626

2727
unit_tests:
2828
name: Unit tests
2929
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
3030
with:
31-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
31+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
3232

3333
docs_check:
3434
name: Docs check

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 = [
@@ -39,7 +40,7 @@ dependencies = [
3940
"crawlee>=1.0.2,<2.0.0",
4041
"cachetools>=5.5.0",
4142
"cryptography>=42.0.0",
42-
"impit>=0.6.1",
43+
"impit>=0.8.0",
4344
"lazy-object-proxy>=1.11.0",
4445
"more_itertools>=10.2.0",
4546
"typing-extensions>=4.1.0",

0 commit comments

Comments
 (0)