From 8dd0525f8fec6b76c2d358234dc78ae2c28a2c5d Mon Sep 17 00:00:00 2001 From: Aki Ariga Date: Wed, 16 Oct 2024 15:38:13 -0700 Subject: [PATCH] Remove jpype from Python 3.13 test See https://github.com/jpype-project/jpype/issues/1204 --- noxfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 4b9bb4f..27865f8 100644 --- a/noxfile.py +++ b/noxfile.py @@ -27,8 +27,8 @@ def lint(session): ("3.10", True), ("3.11", True), ("3.12", True), - ("3.13", False), - ("3.13", True), + ("3.13", False), # jpype does not support Python 3.13 yet + # ("3.13", True), ], ) def tests(session, jpype):