Skip to content

Commit

Permalink
Updated to be Django 4.2 LTS compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberDeck committed Dec 29, 2023
1 parent b82fc69 commit 59ec87a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 0 additions & 2 deletions demo/demo/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@

USE_I18N = True

USE_L10N = True

USE_TZ = True


Expand Down
2 changes: 1 addition & 1 deletion django_allauth_webauthn/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from django.http.response import JsonResponse
from django.shortcuts import redirect
from django.utils.decorators import method_decorator
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _
from django.views.decorators.csrf import csrf_exempt
from django.views.generic import View
from django.views.generic.base import TemplateView
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exclude = [

[tool.poetry.dependencies]
python = "^3.10"
Django = "^3.2.7"
Django = "^4.2.8"
django-allauth = "^0.45.0"
webauthn = "^0.4.7"

Expand All @@ -41,6 +41,9 @@ sphinx-autobuild = "^2021.3.14"
sphinx-rtd-theme = "^1.0.0"
toml = "^0.10.2"

[tool.poetry.group.dev.dependencies]
django-upgrade = "^1.15.0"

[tool.coverage.run]
branch = true
omit = [".*", "*/site-packages/*", "manage.py", "tests/*"]
Expand Down

0 comments on commit 59ec87a

Please sign in to comment.