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.
Copilot summary
This pull request includes multiple changes to update the supported Python versions across various configuration files and scripts. The most important changes involve removing support for Python 3.7 and ensuring compatibility with Python 3.8 and higher.
Updates to supported Python versions:
.github/workflows/_local_ci_tests.yml
: Removed Python 3.7 from the matrix of supported Python versions. [1] [2].github/workflows/cd_release.yml
: Updated the validation logic to exclude Python 3.7 and updated the list of supported versions..github/workflows/ci_cd_updated_default_branch.yml
: Updated the validation logic to exclude Python 3.7 and updated the list of supported versions..github/workflows/ci_check_pyproject_dependencies.yml
: Updated the validation logic to exclude Python 3.7 and updated the list of supported versions..github/workflows/ci_tests.yml
: Updated the validation logic to exclude Python 3.7 and updated the list of supported versions..pre-commit-config.yaml
: Removed references to Python 3.7 and updated thepyupgrade
hook to use--py38-plus
. [1] [2]docs/workflows/ci_tests.md
: Updated the example Python versions to exclude Python 3.7 and use Python 3.9 for documentation. [1] [2]pyproject.toml
: Removed Python 3.7 from the classifiers and updated therequires-python
field to~=3.8
. Updated dependencies and tools to be compatible with Python 3.8 and higher. [1] [2] [3] [4]tests/tasks/test_update_deps.py
: Updated test cases to use Python 3.8 instead of Python 3.7. [1] [2] [3] [4] [5]