-
Notifications
You must be signed in to change notification settings - Fork 0
Django v4.2 and Package Upgrades #308
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
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
e7d8e6d
Update reqs in base file
ronardcaktus 6e783d9
Update other dependencies
ronardcaktus e1c63f4
Remove file
ronardcaktus df23cc4
Fix readme typo
ronardcaktus 9645bae
Update reqs
ronardcaktus bb0edae
Minor update to packages and run pre-commit and flynt
ronardcaktus 2892b8f
Fix storages consts
ronardcaktus 7317f00
Run pyupgrade on all files
ronardcaktus c5157cf
Move project from ckeditor to ckeditor 5
ronardcaktus ebe34ac
Upgrade all reqs by adding --upgrade
ronardcaktus 5035b8c
try pinning botocore==1.36.15 and awscli==1.37.15
copelco 32c0467
Remove update flag
ronardcaktus fa782b2
Update project to python 3.12
ronardcaktus b144f62
Update chart colors (#310)
jeanetteobr d042ceb
Add Likelihood of stop (#313)
copelco a698804
Remove double admin registration
ronardcaktus ecbf4e7
Run make_requirements after rebasing
ronardcaktus 8dfead9
Run make_requirements after rebasing
ronardcaktus a461f2e
Merge remote-tracking branch 'origin/develop' into CU-868amjqdw-updat…
copelco File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from ckeditor.widgets import CKEditorWidget | ||
from django import forms | ||
from django.contrib import admin | ||
from django_ckeditor_5.widgets import CKEditor5Widget | ||
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. re: your comment about ckeditor, does using django_ckeditor_5 fix everything or do we still get a warning? |
||
|
||
from nc.models import ( | ||
Agency, | ||
|
@@ -81,8 +81,8 @@ class InlineResourceFile(admin.StackedInline): | |
|
||
class ResourceForm(forms.ModelForm): | ||
# https://django-ckeditor.readthedocs.io/en/latest/#widget | ||
title = forms.CharField(widget=CKEditorWidget()) | ||
description = forms.CharField(widget=CKEditorWidget()) | ||
title = forms.CharField(widget=CKEditor5Widget()) | ||
description = forms.CharField(widget=CKEditor5Widget()) | ||
|
||
class Meta: | ||
model = Resource | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
# base requirements.in | ||
django==3.2.25 | ||
django==4.2.18 | ||
celery==5.4.0 | ||
census==0.8.24 | ||
us | ||
dealer | ||
boto | ||
boto3==1.35.76 | ||
botocore==1.35.76 | ||
click==8.1.7 | ||
boto3 | ||
botocore | ||
click | ||
# django-cache-machine is no longer used, remains for legacy migrations | ||
django-ckeditor==6.7.0 | ||
django-click==2.3.0 | ||
django-ckeditor-5 | ||
django-click | ||
django-crispy-forms | ||
django-dotenv | ||
django-extensions | ||
django-filter | ||
django-memoize | ||
django-pgviews-redux==0.8.0 | ||
|
||
django-pgviews-redux | ||
django-redis | ||
django-storages==1.13.2 | ||
djangorestframework==3.12.4 | ||
django-storages | ||
djangorestframework | ||
dj-database-url | ||
drf-extensions==0.7.1 | ||
psycopg2==2.9.9 | ||
brotli==1.1.0 | ||
drf-extensions | ||
psycopg2 | ||
brotli | ||
httpx[http2] | ||
requests==2.32.3 | ||
urllib3==2.2.1 | ||
requests | ||
urllib3 | ||
six | ||
whitenoise | ||
pandas==2.2.2 | ||
vine==5.1.0 | ||
pandas | ||
vine |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.