Skip to content

Commit 837efc4

Browse files
committed
Enable failure for type checking only for the latest supported python
1 parent aed5ade commit 837efc4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,23 @@ jobs:
4040
ignore-test-outcome: false
4141
- python-version: "3.10"
4242
toxfactor: py3.10
43-
ignore-typecheck-outcome: false
43+
ignore-typecheck-outcome: true
4444
ignore-test-outcome: false
4545
- python-version: "3.11"
4646
toxfactor: py3.11
47-
ignore-typecheck-outcome: false
47+
ignore-typecheck-outcome: true
4848
ignore-test-outcome: false
4949
- python-version: "3.12"
5050
toxfactor: py3.12
51-
ignore-typecheck-outcome: false
51+
ignore-typecheck-outcome: true
5252
ignore-test-outcome: false
5353
- python-version: "3.13"
5454
toxfactor: py3.13
5555
ignore-typecheck-outcome: false
5656
ignore-test-outcome: false
5757
- python-version: "3.14"
5858
toxfactor: py3.14
59-
ignore-typecheck-outcome: false
59+
ignore-typecheck-outcome: true # TODO: Set to true once python3.14 is stable
6060
ignore-test-outcome: false
6161
steps:
6262
- uses: actions/checkout@v4

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Added
3535
* Declare compatibility with python 3.13. Supported versions are now: 3.9, 3.10, 3.11, 3.12, 3.13.
3636
* Test against pytest 8.4
3737
* Test against python 3.14 (beta)
38-
* Run static type checks on all supported python version.
38+
* Run static type checks (only using the last stable python version).
3939

4040
Changed
4141
+++++++

0 commit comments

Comments
 (0)