From c82354381cec493c34775fb6b787f4f2d2c9905a Mon Sep 17 00:00:00 2001 From: dblock Date: Wed, 26 Jul 2023 11:51:41 -0400 Subject: [PATCH] Added Python 3.10 and 3.11 to nox. Signed-off-by: dblock --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 09425f23..3504ff75 100644 --- a/noxfile.py +++ b/noxfile.py @@ -36,7 +36,7 @@ ) -@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9"]) +@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]) def test(session): session.install(".") session.install("-r", "dev-requirements.txt")