-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Support Python 3.11 (#26121) #26121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Python 3.11 (#26121) #26121
Conversation
Update python minor version Add py311 to python tests
Add Python 3.11 to PostCommit and Precommits that run on Jenkins fix groovy file Add context to a TODO comment
Add Python 3.11 to tox
fix tox task
fix tox task Update tenacity
Add TODO for dependencies in base_image_requirements.txt
d15ae5f to
c6b2800
Compare
Codecov Report
@@ Coverage Diff @@
## master #26121 +/- ##
==========================================
- Coverage 71.18% 71.17% -0.02%
==========================================
Files 787 787
Lines 103296 103311 +15
==========================================
- Hits 73530 73529 -1
- Misses 28278 28294 +16
Partials 1488 1488
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 9 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
|
Run Python_Integration PreCommit |
|
Verified that this PR is identical to #26120 modulo comment-only changes to base_image_requirements_manual.txt. |
|
Merging based on test signal from #26120 |
| tasks(':sdks:python:test-suites:portable:py${lowestSupported}:preCommitPy${lowestSupported}') | ||
| commonJobProperties.setGradleSwitches(delegate) | ||
| } | ||
| gradle { | ||
| rootBuildScriptDir(commonJobProperties.checkoutDir) | ||
| tasks(':sdks:python:test-suites:portable:py310:preCommitPy310') | ||
| tasks(':sdks:python:test-suites:portable:${highestSupported}:preCommitPy${highestSupported}') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like these changes are causing Python Portable Precommit to fail with:
Project 'py${lowestSupported}' not found in project ':sdks:python:test-suites:portable'
Need to use double quotes when using embedded values
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix in #26151
Adds support for Python 3.11.
Fixes: #23848