Include Python 3.11 in nox tests and Github actions matrix (#56)
* Include Python 3.11 in nox tests and Github actions matrixmaster
parent
6eb867e08f
commit
b2043793ee
|
@ -26,6 +26,8 @@ jobs:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
python-version: [3.9]
|
python-version: [3.9]
|
||||||
include:
|
include:
|
||||||
|
- os: ubuntu-latest
|
||||||
|
python-version: "3.11"
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import nox
|
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):
|
def test(session):
|
||||||
session.install("-rrequirements-dev.txt")
|
session.install("-rrequirements-dev.txt")
|
||||||
session.install("-e", ".", "--no-build-isolation")
|
session.install("-e", ".", "--no-build-isolation")
|
||||||
|
|
Loading…
Reference in New Issue