Skip to content
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

Merged
merged 1 commit into from
Aug 2, 2023
Merged

Update needed for Django 4.2.3 #444

merged 1 commit into from
Aug 2, 2023

Conversation

Evan-CTL
Copy link
Contributor

@Evan-CTL Evan-CTL commented Aug 1, 2023

No description provided.

@Evan-CTL Evan-CTL force-pushed the django-4.2.3 branch 2 times, most recently from 61aafda to a16ecb8 Compare August 1, 2023 17:55
CHANGES.txt Outdated
@@ -1,4 +1,8 @@
2.4.0
2.5.0 (2023-08-01)
Copy link
Member

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
Copy link
Member

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.

@Evan-CTL Evan-CTL force-pushed the django-4.2.3 branch 2 times, most recently from ebe4110 to 1825349 Compare August 1, 2023 18:52
url(r'^course/create/$',
views.CourseCreateView.as_view(),
name='create_course'),
re_path(r'^select_course/$',
Copy link
Member

@nikolas nikolas Aug 1, 2023

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'
Copy link
Member

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

Copy link
Contributor Author

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',
Copy link
Member

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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

@nikolas nikolas merged commit 9e1f4c8 into master Aug 2, 2023
4 checks passed
@ndittren ndittren deleted the django-4.2.3 branch January 23, 2024 20:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants