Skip to content

Commit

Permalink
Merge pull request #178 from penguinzephyr/master
Browse files Browse the repository at this point in the history
Updates Django from 3.2.18 --> 5.0.3. Updates all dependencies to the latest available.
  • Loading branch information
dreinhold authored Mar 20, 2024
2 parents 95f37e5 + eb939f5 commit 874216f
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 43 deletions.
2 changes: 1 addition & 1 deletion radio/forms.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import re
from django import forms
from django.contrib.auth.models import User
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _

from django_select2.forms import (
HeavySelect2MultipleWidget, HeavySelect2Widget, ModelSelect2MultipleWidget,
Expand Down
82 changes: 41 additions & 41 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
aioredis==1.3.1
asgiref==3.3.4
async-timeout==3.0.1
attrs==21.2.0
aioredis==2.0.1
asgiref==3.7.2
async-timeout
attrs==23.2.0
autobahn
Automat==20.2.0
certifi==2022.12.7
cffi==1.14.6
channels==3.0.4
channels-redis==3.3.0
chardet==4.0.0
charset-normalizer==2.0.4
constantly==15.1.0
cryptography==39.0.1
daphne==3.0.2
Automat==22.10.0
certifi==2024.2.2
cffi==1.16.0
channels==4.0.0
channels-redis==4.2.0
chardet==5.2.0
charset-normalizer==3.3.2
constantly==23.10.4
cryptography==42.0.5
daphne==4.1.0
defusedxml==0.7.1
Django==3.2.18
django-allauth==0.45.0
django-appconf==1.0.4
django-ipware==2.1.0
django-redis==5.0.0
django-select2==7.7.1
djangorestframework==3.12.4
hiredis==2.0.0
Django==5.0.3
django-allauth==0.61.1
django-appconf==1.0.6
django-ipware==6.0.4
django-redis==5.4.0
django-select2==8.1.2
djangorestframework==3.15.0
hiredis==2.3.2
hyperlink==21.0.0
idna==3.2
incremental==21.3.0
idna==3.6
incremental==22.10.0
jsonfield==3.1.0
msgpack==1.0.2
msgpack==1.0.8
msgpack-python==0.5.6
oauthlib==3.2.2
psycopg2-binary==2.9.1
pyasn1==0.4.8
pyasn1-modules==0.2.8
pycparser==2.20
PyJWT==2.4.0
pyOpenSSL==20.0.1
psycopg2-binary==2.9.9
pyasn1==0.5.1
pyasn1-modules==0.3.0
pycparser==2.21
PyJWT==2.8.0
pyOpenSSL==24.1.0
python3-openid==3.2.0
pytz==2021.1
redis==4.4.4
requests==2.26.0
requests-oauthlib==1.3.0
service-identity==21.1.0
redis==5.0.3
requests==2.31.0
requests-oauthlib==1.4.0
service-identity==24.1.0
six==1.16.0
sqlparse==0.4.4
stripe==2.60.0
stripe==8.7.0
tinys3==0.1.12
Twisted==22.4.0
txaio==21.2.1
typing-extensions==3.10.0.2
urllib3==1.26.6
zope.interface==5.4.0
Twisted==24.3.0
txaio==23.1.1
typing-extensions==4.10.0
urllib3==2.2.1
zope.interface==6.2
1 change: 1 addition & 0 deletions trunk_player/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'allauth.account.middleware.AccountMiddleware',
]

ROOT_URLCONF = 'trunk_player.urls'
Expand Down
2 changes: 1 addition & 1 deletion trunk_player/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
1. Import the include() function: from django.conf.urls import url, include
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
"""
from django.conf.urls import url, include
from django.urls import re_path as url, include
from django.conf.urls.static import static
from django.conf import settings
from django.contrib import admin, auth
Expand Down

0 comments on commit 874216f

Please sign in to comment.