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.
2 parents 22c4a1f + 9e13598 commit 8d16d90Copy full SHA for 8d16d90
.github/workflows/main.yml
@@ -38,8 +38,8 @@ jobs:
38
matrix:
39
python:
40
- "3.7"
41
- - "3.10"
42
- "3.11"
+ - "3.12"
43
# Workaround for actions/setup-python#508
44
dev:
45
- -dev
@@ -48,6 +48,12 @@ jobs:
48
- macos-latest
49
- windows-latest
50
include:
51
+ - python: "3.8"
52
+ platform: ubuntu-latest
53
+ - python: "3.9"
54
55
+ - python: "3.10"
56
57
- python: pypy3.9
58
platform: ubuntu-latest
59
runs-on: ${{ matrix.platform }}
setup.cfg
@@ -30,7 +30,9 @@ testing =
30
# upstream
31
pytest >= 6
32
pytest-checkdocs >= 2.4
33
- pytest-flake8
+ pytest-flake8; \
34
+ # workaround for tholo/pytest-flake8#87
35
+ python_version < "3.12"
36
# workaround for tholo/pytest-flake8#87
37
flake8 < 5
pytest-black >= 0.3.7; \
0 commit comments