File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ dist: focal
44matrix :
55 include :
66 # Historically, we've run tests on the latest supported version of Python first.
7- # For now, we're running Python 3.12 first, because it's the verions currently used for codegen.
7+ # For now, we're running Python 3.12 first, because it's the version currently used for codegen.
88 # This is where additional tests are run so we give it more time.
99 - python : " 3.12"
1010 - python : " 3.9"
@@ -20,7 +20,8 @@ install:
2020 - travis_retry pip install --upgrade tox==3.* tox-travis
2121
2222before_script :
23- - python tools/ensure_codegen_up_to_date.py
23+ # Python 3.13 is only supported by grpcio-tools >= 1.67.0, a later version than what we use in the tox.ini
24+ - if [[ "$TRAVIS_PYTHON_VERSION" != "3.13" ]]; then python tools/ensure_codegen_up_to_date.py; fi
2425
2526script :
2627 - tox -c tox-travis.ini
You can’t perform that action at this time.
0 commit comments