-
Notifications
You must be signed in to change notification settings - Fork 3
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
Upgrade Django to 4.2 LTS #184
Conversation
441a45b
to
aab3522
Compare
aab3522
to
f43c397
Compare
8f7efe7
to
c65a7e6
Compare
57f20fa
to
a595593
Compare
e00627f
to
8ec9277
Compare
d110337
to
0d4abfe
Compare
requirements/common_constraints.txt
Outdated
@@ -14,7 +18,7 @@ | |||
|
|||
|
|||
# using LTS django version | |||
Django<4.0 | |||
|
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.
I believe we should remove the # using LTS django version
comment as well.
Makefile
Outdated
@@ -108,6 +112,8 @@ upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade | |||
upgrade: piptools $(COMMON_CONSTRAINTS_TXT) ## update the requirements/*.txt files with the latest packages satisfying requirements/*.in | |||
sed 's/django-simple-history==3.0.0//g' requirements/common_constraints.txt > requirements/common_constraints.tmp | |||
mv requirements/common_constraints.tmp requirements/common_constraints.txt | |||
sed 's/Django<4.0//g' requirements/common_constraints.txt > requirements/common_constraints.tmp | |||
mv requirements/common_constraints.tmp requirements/common_constraints.txt |
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.
It looks like Django<4.0
has already been removed from common_constraints.txt
, and it's now Django<5.0
in edx-lint. Do we need to have this in the Makefile
over the long term? Is the risk that the the constraint may be reintroduced?
0d4abfe
to
c5d0b6a
Compare
c5d0b6a
to
87c03cd
Compare
This reverts commit 5b45de3.
Description
CheckList