Skip to content

Commit fcfa1e7

Browse files
authored
Merge pull request #40 from andrewdnolan/add-python3.14
Add support for python 3.14
2 parents 2ec2eb2 + a901b95 commit fcfa1e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
uses: actions/checkout@v4
3131

3232
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
33-
name: Set up Python 3.10
33+
name: Set up Python 3.13
3434
uses: actions/setup-python@v5
3535
with:
36-
python-version: "3.10"
36+
python-version: "3.13"
3737

3838
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
3939
id: file_changes
@@ -59,7 +59,7 @@ jobs:
5959
shell: bash -l {0}
6060
strategy:
6161
matrix:
62-
python-version: ["3.10", "3.11", "3.12", "3.13"]
62+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
6363
steps:
6464
- id: skip_check
6565
uses: fkirc/skip-duplicate-actions@master

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ testpaths = ["tests"]
6464

6565
[tool.mypy]
6666
files = ["src", "test"]
67-
python_version = "3.10"
67+
python_version = "3.13"
6868
strict = false
6969
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
7070
ignore_missing_imports = true

0 commit comments

Comments
 (0)