We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e442f33 commit ab391b8Copy full SHA for ab391b8
.github/workflows/ci.yml
@@ -35,7 +35,7 @@ jobs:
35
- "3.11"
36
- "3.12"
37
- "3.13"
38
-# - "3.14" # 3.14 will fail because of colors, see #72
+ - "3.14"
39
40
steps:
41
- uses: actions/checkout@v6
.github/workflows/lint.yml
@@ -29,7 +29,8 @@ jobs:
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
32
- python -m pip install .[lint]
+ python -m pip install .[lint] pytest
33
+ # Also install pytest here, otherwise mypy will complain about our test files
34
- name: Lint with Ruff
run: ruff check . --output-format github
0 commit comments