Remove support for Python 3.9#606
Merged
gtopper merged 2 commits intomlrun:developmentfrom Jan 22, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request removes support for Python 3.9 and updates the minimum required Python version to 3.11 across the project's configuration files.
Changes:
- Updated
python_requiresfrom>=3.9to>=3.11in setup.py - Removed Python 3.9 from CI/CD workflows and updated to use Python 3.11 exclusively
- Simplified GitHub Actions workflows by removing Python version matrices
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| setup.py | Updated minimum Python version requirement to 3.11 and corresponding classifier |
| .readthedocs.yml | Updated build tools and documentation build to use Python 3.11 |
| .github/workflows/release.yml | Updated container image to Python 3.11 and removed branch-specific conditionals |
| .github/workflows/pr.yml | Removed Python version matrix, now only tests against Python 3.11 |
| .github/workflows/pr-privileged.yml | Removed Python version matrix and simplified to use Python 3.11 container |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
gtopper
added a commit
that referenced
this pull request
Jan 26, 2026
* Add support for stream responses [ML-11875](https://iguazio.atlassian.net/browse/ML-11875) * Improvement and more tests * More tests and fixes * New tests and related fixes * Fmt * Shorten code * Improve comment * Fix style * Remove unreachable yields * Local refactor * Refactor * Add async test * Use Union until #606 is merged * Minor improvements to streaming tests * Delete unused method * Use repr * Improve comments, minor refactoring * Dedup local code * Minor refactoring * Remove unnecessary elif * Minor local refactoring * Minor local refactoring * Improve execution_mechanism + streaming validation * Minor change for static check * Replace Reduce with Complete in streaming test suite * Merge streaming + error handling test suites * Improve test * Merge two streaming completion-related test suites * Improve test names, descriptions * Extract common streaming test helpers * Improve docstrings and type annotations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ML-11065