Skip to content

Commit

Permalink
deps: django upgrade to 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m4ra committed Nov 7, 2023
1 parent 5b09160 commit fd5a4f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bleach[css]==6.0.0
Django==3.2.20
Django==4.0
django-allauth==0.54.0
git+https://github.com/liqd/django-autoslug.git@liqd2212#egg=django-autoslug
django-ckeditor==6.6.1
Expand Down
4 changes: 2 additions & 2 deletions tests/project/urls.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.contrib import admin
from django.contrib.auth import views
from django.contrib.auth.views import LoginView
from django.urls import include
from django.urls import path
from rest_framework import routers
Expand Down Expand Up @@ -31,6 +31,6 @@
path("admin/", admin.site.urls),
path("projects/", include(prj_urls)),
path("modules/", include(mod_urls)),
path("accounts/login", views.LoginView, name="account_login"),
path("accounts/login", LoginView.as_view(), name="account_login"),
path("dashboard/", include(dashboard_urls)),
]

0 comments on commit fd5a4f2

Please sign in to comment.