Skip to content

Commit 68ebbd9

Browse files
authored
feat: Add support for Python 3.14 (#520)
1 parent 1cc9765 commit 68ebbd9

File tree

7 files changed

+68
-62
lines changed

7 files changed

+68
-62
lines changed

.github/workflows/_async_docstrings_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55

66
env:
7-
PYTHON_VERSION: 3.13
7+
PYTHON_VERSION: 3.14
88

99
jobs:
1010
async_docstring_check:

.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: 20
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: 4 additions & 4 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
async_docstrings:
5454
name: Async dostrings check
@@ -59,7 +59,7 @@ jobs:
5959
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
6060
secrets: inherit
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/release.yaml

Lines changed: 4 additions & 4 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
async_docstrings:
6565
name: Async dostrings check
@@ -70,7 +70,7 @@ jobs:
7070
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
7171
secrets: inherit
7272
with:
73-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
73+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
7474

7575
update_changelog:
7676
name: Update changelog

.github/workflows/run_code_checks.yaml

Lines changed: 4 additions & 4 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
async_docstrings:
3434
name: Async dostrings check
@@ -43,5 +43,5 @@ jobs:
4343
needs: [lint_check, type_check, unit_tests]
4444
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
4545
with:
46-
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
46+
python-versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
4747
secrets: inherit

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ 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 = ["apify", "api", "client", "automation", "crawling", "scraping"]
2627
dependencies = [
2728
"apify-shared>=2.1.0,<3.0.0",
2829
"colorama>=0.4.0",
29-
"impit>=0.5.3",
30+
"impit>=0.8.0",
3031
"more_itertools>=10.0.0",
3132
]
3233

0 commit comments

Comments
 (0)