-
Notifications
You must be signed in to change notification settings - Fork 30
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
feat: adding python3.11 and 3.12 support #227
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #227 +/- ##
=======================================
Coverage 93.43% 93.43%
=======================================
Files 18 18
Lines 1995 1995
Branches 130 130
=======================================
Hits 1864 1864
Misses 118 118
Partials 13 13
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
cecd5d0
to
008e535
Compare
008e535
to
429b408
Compare
8e71efa
to
51e93db
Compare
@@ -23,7 +22,8 @@ commands = | |||
make test_quality | |||
|
|||
[testenv:docs] | |||
deps = | |||
deps = | |||
setuptools |
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 shouldn't be needed for Python 3.11 support as setuptools
is removed in Python 3.12
.
Makefile
Outdated
# Make sure to compile files after any other files they include! | ||
pip-compile --upgrade --allow-unsafe --rebuild -o requirements/pip.txt requirements/pip.in | ||
pip-compile --upgrade --verbose --rebuild -o requirements/pip-tools.txt requirements/pip-tools.in | ||
pip-compile --upgrade --allow-unsafe --verbose --rebuild -o requirements/pip-tools.txt requirements/pip-tools.in |
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.
--allow-unsafe
shouldn't be needed for Python 3.11
support.
openedx/public-engineering#233
Python 3.11 and 3.12 support.