-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update needed for Django 4.2.3 #444
Conversation
61aafda
to
a16ecb8
Compare
CHANGES.txt
Outdated
@@ -1,4 +1,8 @@ | |||
2.4.0 | |||
2.5.0 (2023-08-01) |
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.
The current version on pypi is version 2.3.0, so I suggest the next version we release will be 2.4.0.
CHANGES.txt
Outdated
2.4.0 | ||
2.5.0 (2023-08-01) | ||
==================== | ||
* Prioritize urllib.parse.quote import over deprecated django.utils.http.urlquote |
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.
Also, it's good to note in the changelog here that this adds compatibility with Django 4.2.
ebe4110
to
1825349
Compare
courseaffils/tests/urls.py
Outdated
url(r'^course/create/$', | ||
views.CourseCreateView.as_view(), | ||
name='create_course'), | ||
re_path(r'^select_course/$', |
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.
Because these routes don't appear to be using any regex-specific stuff, just using the more standard path
should work as well:
path('select_course/',
views.CourseListView.as_view(),
name='select_course'),
setup.py
Outdated
@@ -1,13 +1,13 @@ | |||
from setuptools import setup, find_packages | |||
|
|||
version = '2.3.0' | |||
version = '2.5.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.
Version number here should be changed to 2.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.
Right forgot to change that back
@@ -37,7 +37,6 @@ | |||
'django.contrib.contenttypes', | |||
'django.contrib.sessions', | |||
'courseaffils', | |||
'django_markwhat', |
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.
We can remove django-markwhat
from test_reqs.txt
as well in this PR, if you're removing it here.
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.
Done.
No description provided.