Skip to content

Commit 19bde15

Browse files
committed
Let's try going to 3.11.
1 parent d91a1a1 commit 19bde15

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@v3.0.2
1717

18-
- name: Set up Python 3.8
18+
- name: Set up Python 3.11
1919
uses: actions/setup-python@v4.2.0
2020
with:
21-
python-version: 3.8
21+
python-version: 3.11
2222

2323
- name: Install base and testing dependencies
2424
run: |

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
2-
; this is shorthand for py38,py38-mypy,py38-flake8.
3-
envlist = py38{,-mypy,-flake8}
2+
; this is shorthand for py311,py311-mypy,py311-flake8.
3+
envlist = py311{,-mypy,-flake8}
44

55
; run pytest to run the tests
66
[testenv]
@@ -11,7 +11,7 @@ commands =
1111
pytest test_unused_arguments.py -m "not release"
1212

1313
; run mypy for type checking
14-
[testenv:py38-mypy]
14+
[testenv:py311-mypy]
1515
deps =
1616
mypy
1717
commands=
@@ -21,7 +21,7 @@ commands=
2121
--show-error-codes
2222

2323
; run flake8 for basic linting
24-
[testenv:py38-flake8]
24+
[testenv:py311-flake8]
2525
deps =
2626
flake8
2727
commands=

0 commit comments

Comments
 (0)