From 41248054f98c8e0fe8ad7576f3e81aeb0aca9fbc Mon Sep 17 00:00:00 2001 From: Katie McLaughlin Date: Mon, 17 Mar 2025 18:13:59 +1100 Subject: [PATCH] fix(template): don't test 3.13 (incompat with pandas 2.2.3) --- generative_ai/template_folder/noxfile_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generative_ai/template_folder/noxfile_config.py b/generative_ai/template_folder/noxfile_config.py index 9a4b880f93..962ba40a92 100644 --- a/generative_ai/template_folder/noxfile_config.py +++ b/generative_ai/template_folder/noxfile_config.py @@ -22,7 +22,7 @@ TEST_CONFIG_OVERRIDE = { # You can opt out from the test for specific Python versions. - "ignored_versions": ["2.7", "3.7", "3.8", "3.10", "3.11"], + "ignored_versions": ["2.7", "3.7", "3.8", "3.10", "3.11", "3.13"], # Old samples are opted out of enforcing Python type hints # All new samples should feature them "enforce_type_hints": True,