-
Notifications
You must be signed in to change notification settings - Fork 71
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
build: adding python3.11 support. #2389
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,14 @@ | |
# Common constraints for edx repos | ||
-c common_constraints.txt | ||
|
||
# The update to pyyaml 6.x failed as docker-compose wants <6,>=3.10. Pinning to <6.0. This constraint will be | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since it looks like we're not removing Python 3.8 support, will this break for Python 3.8? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like this was more of an issue of incompatibility with an old version of docker-compose but that package is no longer needed. Pyyaml 6.x is compatible with Python 3.8 and 3.11 |
||
# re-evaluated as part of APER-1556. | ||
pyyaml<6.0 | ||
|
||
# Pinning urllib3 to versions < 2.x as this conflicts with boto. This constraint will be re-evaluated as part of | ||
# APER-2422 | ||
urllib3<2 | ||
|
||
|
||
# Temporary to Support the python 3.11 Upgrade | ||
backports.zoneinfo;python_version<"3.9" # Newer versions have zoneinfo available in the standard library | ||
|
||
# Pinning lxml to < 5.2 as edx-i18n-tools package needs to be updated. | ||
# Release notes: https://pypi.org/project/lxml/5.2.0/ | ||
# Github issue: https://github.com/openedx/i18n-tools/issues/144 | ||
|
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.
Need to move this to some where else. This is not compatible with
3.11
. Its main purpose is devstack.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.
This requirement isn't needed anymore as there is no usage left of docker-compose v1 in this repo.