From 70dcdca8752a4750e671e038966a15d28e169ebd Mon Sep 17 00:00:00 2001 From: Maksim Drachov Date: Thu, 25 Jul 2024 14:28:34 +0300 Subject: [PATCH] add python v3.12 to nox --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 72fedad..4ee81ae 100644 --- a/noxfile.py +++ b/noxfile.py @@ -15,7 +15,7 @@ assert DEPS_DIR.is_dir(), "Invalid configuration" -PYTHONS = ["3.8", "3.9", "3.10", "3.11"] +PYTHONS = ["3.8", "3.9", "3.10", "3.11", "3.12"] @nox.session(python=False)