Skip to content

Commit 53e42d6

Browse files
committed
2 parents 051b26a + 47c2cb3 commit 53e42d6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ jobs:
77
strategy:
88
matrix:
99
python:
10-
# Build on pre-releases until stable, then stable releases.
11-
# actions/setup-python#213
12-
- ~3.7.0-0
13-
- ~3.10.0-0
14-
- ~3.11.0-0
10+
- 3.7
11+
- '3.10'
12+
- '3.11'
1513
platform:
1614
- ubuntu-latest
1715
- macos-latest
@@ -24,9 +22,9 @@ jobs:
2422
# ref actions/checkout#448
2523
fetch-depth: 0
2624
- name: Setup Python
27-
uses: actions/setup-python@v3
25+
uses: actions/setup-python@v4
2826
with:
29-
python-version: ${{ matrix.python }}
27+
python-version: ${{ matrix.python }}-dev
3028
- name: Install tox
3129
run: |
3230
python -m pip install tox
@@ -74,9 +72,9 @@ jobs:
7472
steps:
7573
- uses: actions/checkout@v3
7674
- name: Setup Python
77-
uses: actions/setup-python@v3
75+
uses: actions/setup-python@v4
7876
with:
79-
python-version: "3.10"
77+
python-version: "3.11-dev"
8078
- name: Install tox
8179
run: |
8280
python -m pip install tox

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ testing =
3434
pytest >= 6
3535
pytest-checkdocs >= 2.4
3636
pytest-flake8
37+
# workaround for tholo/pytest-flake8#87
38+
flake8 < 5
3739
pytest-black >= 0.3.7; \
3840
# workaround for jaraco/skeleton#22
3941
python_implementation != "PyPy"

0 commit comments

Comments
 (0)