From c7278803cc74b1bcd1f0af1c995dd2ef075d56cc Mon Sep 17 00:00:00 2001 From: Tianzi Cai Date: Tue, 23 Aug 2022 14:16:23 -0700 Subject: [PATCH] fix(pubsublite): ignore python 3.10 (#8282) --- pubsublite/spark-connector/noxfile_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubsublite/spark-connector/noxfile_config.py b/pubsublite/spark-connector/noxfile_config.py index 4d0f3b679dfa..618515569b47 100644 --- a/pubsublite/spark-connector/noxfile_config.py +++ b/pubsublite/spark-connector/noxfile_config.py @@ -23,7 +23,7 @@ TEST_CONFIG_OVERRIDE = { # You can opt out from the test for specific Python versions. # NOTE: We currently only run the test in Python 3.8. - "ignored_versions": ["2.7", "3.6", "3.7", "3.9"], + "ignored_versions": ["2.7", "3.6", "3.7", "3.9", "3.10"], # Old samples are opted out of enforcing Python type hints # All new samples should feature them "enforce_type_hints": True,