Include Python 3.11 in nox tests and Github actions matrix (#56)

* Include Python 3.11 in nox tests and Github actions matrix
master
Caleb Hattingh 2023-01-14 02:29:38 +10:00 committed by GitHub
parent 6eb867e08f
commit b2043793ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,8 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.9]
include:
- os: ubuntu-latest
python-version: "3.11"
- os: ubuntu-latest
python-version: "3.10"
- os: ubuntu-latest

View File

@ -1,7 +1,7 @@
import nox
@nox.session(python=["3.7", "3.8", "3.9", "3.10"])
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11"])
def test(session):
session.install("-rrequirements-dev.txt")
session.install("-e", ".", "--no-build-isolation")