Skip to content

Commit ab391b8

Browse files
committed
Added Python 3.14 to tests matrix
1 parent e442f33 commit ab391b8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- "3.11"
3636
- "3.12"
3737
- "3.13"
38-
# - "3.14" # 3.14 will fail because of colors, see #72
38+
- "3.14"
3939

4040
steps:
4141
- uses: actions/checkout@v6

.github/workflows/lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
python -m pip install .[lint]
32+
python -m pip install .[lint] pytest
33+
# Also install pytest here, otherwise mypy will complain about our test files
3334

3435
- name: Lint with Ruff
3536
run: ruff check . --output-format github

0 commit comments

Comments
 (0)