chore: Update package versions across requirements files for compatibility with Python 3.11#1199
Merged
Merged
Conversation
…ility with Python 3.11
There was a problem hiding this comment.
Pull request overview
Updates the repo’s pinned Python dependencies (compiled via pip-tools) to newer versions while preserving Python 3.11 compatibility by introducing explicit constraints for packages that have dropped 3.11 support in newer major releases.
Changes:
- Bump pinned versions across environment-specific requirements files (base/test/dev/ci/doc/quality/scripts, plus pip/pip-tools).
- Add/extend
requirements/constraints.txtto cap select Open edX packages below major versions that drop Python 3.11 support. - Regenerate requirements metadata/comments to reflect constraints provenance (e.g.,
# via -c requirements/constraints.txt) where applicable.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| requirements/base.txt | Updates core runtime pins (e.g., celery/click/django/packaging/tzdata). |
| requirements/test.txt | Updates test-time pins (e.g., coverage/ddtrace/pytest stack/opentelemetry-api). |
| requirements/doc.txt | Updates documentation build pins in line with test/base updates. |
| requirements/quality.txt | Updates lint/quality toolchain pins and aligns shared dependency versions. |
| requirements/scripts.txt | Updates script/runtime pins (e.g., anyio/authlib/confluent-kafka/cryptography/requests) and pulls in new transitive deps (e.g., joserfc). |
| requirements/dev.txt | Updates developer environment pins (tooling + shared deps) to match regenerated lockfiles. |
| requirements/ci.txt | Updates CI tooling pins (tox/virtualenv stack + related deps). |
| requirements/pip.txt | Updates pinned versions for pip bootstrap dependencies (packaging/wheel/pip). |
| requirements/pip-tools.txt | Updates pip-tools dependency set (build/click/packaging/wheel/pip). |
| requirements/constraints.txt | Adds constraints to keep specific packages below majors that drop Python 3.11 support. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ttak-apphelix
approved these changes
Apr 29, 2026
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.
Description:
Updates the repo’s pinned Python dependencies (compiled via pip-tools) to newer versions while preserving Python 3.11 compatibility by introducing explicit constraints for packages that have dropped 3.11 support in newer major releases.
Changes:
base/test/dev/ci/doc/quality/scripts, pluspip/pip-tools).