Skip to content

Commit 537f8ca

Browse files
committed
drop 3.11
1 parent 039b9ff commit 537f8ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11-dev']
8+
python-version: ['3.7', '3.8', '3.9', '3.10']
99
name: Python ${{ matrix.python-version }}
1010
steps:
1111
- uses: actions/checkout@v3

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
locations = "pytest_test_utils", "tests.py"
1111

1212

13-
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
13+
@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
1414
def tests(session: nox.Session) -> None:
1515
session.install(".[tests]")
1616
# `pytest --cov` will start coverage after pytest

0 commit comments

Comments
 (0)