Skip to content

Commit 99d01a4

Browse files
committed
ci: Run tests against python 3.11
1 parent fbe653d commit 99d01a4

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: [ubuntu-latest, macos-latest, windows-latest]
14-
python-version: [3.7, 3.8, 3.9, "3.10"]
14+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: "3.10"
16+
python-version: "3.11"
1717

1818
- name: Install deps
1919
shell: bash
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Python
3333
uses: actions/setup-python@v4
3434
with:
35-
python-version: "3.10"
35+
python-version: "3.11"
3636

3737
- name: Install deps
3838
shell: bash

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Changelog
2525
* Changed the pytest dependency to be greater than pytest version 7
2626
* Using isort now
2727
* Went from setuptools to hatch
28+
* CI now runs against python 3.11
2829

2930
0.6.0 - 23 October 2021
3031
* Fix bug where it was possible for an async generator fixture to

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310
2+
envlist = py37,py38,py39,py310,py311
33

44
[testenv]
55
setenv =

0 commit comments

Comments
 (0)