From 47ef9df6e474b010c22bcf70020ae1bb5908569d Mon Sep 17 00:00:00 2001 From: TJKoury Date: Fri, 6 Sep 2024 11:47:18 -0400 Subject: [PATCH] Update PythonTest.sh Allow tests to complete as Python 2 does not support type-hinting, drop support for Python 2 per https://github.com/google/flatbuffers/issues/6329. --- tests/PythonTest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/PythonTest.sh b/tests/PythonTest.sh index 647f3daf1..a67f863c3 100755 --- a/tests/PythonTest.sh +++ b/tests/PythonTest.sh @@ -53,9 +53,9 @@ function run_tests() { } # Run test suite with these interpreters. The arguments are benchmark counts. -run_tests python2.6 100 100 100 100 false -run_tests python2.7 100 100 100 100 false -run_tests python2.7 100 100 100 100 true +# run_tests python2.6 100 100 100 100 false +# run_tests python2.7 100 100 100 100 false +# run_tests python2.7 100 100 100 100 true run_tests python3 100 100 100 100 false run_tests python3 100 100 100 100 true run_tests pypy 100 100 100 100 false