Remove deprecated setting

This commit is contained in:
Gabriel Augendre 2021-12-19 20:29:18 +01:00
parent 77cffbea34
commit 4c32917242
3 changed files with 784 additions and 423 deletions

View file

@ -173,8 +173,6 @@ TIME_ZONE = "Europe/Paris"
USE_I18N = True
USE_L10N = True
USE_TZ = True

1190
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -26,12 +26,12 @@ license = "GPLv3"
[tool.poetry.dependencies]
python = "^3.8"
django = "^3.1"
django = "^4.0"
markdown = "^3.2"
gunicorn = "^20.0"
Pygments = "^2.6"
django-anymail = {version = "^7.2", extras = ["mailgun"]}
pillow = "^7.2"
django-anymail = {version = "^8.4", extras = ["mailgun"]}
pillow = "^8.4"
django-cleanup = "^5.0"
requests = "^2.24"
html2text = "^2020.1.16"
@ -45,12 +45,13 @@ django-csp = "^3.7"
[tool.poetry.dev-dependencies]
pre-commit = "^2.7"
pytest = "^6.0"
pytest-django = "^3.9"
pytest-django = "^4.5"
model-bakery = "^1.1"
pytest-cov = "^2.10.1"
pytest-recording = "^0.11.0"
pytest-rerunfailures = "^9.1.1"
pytest-cov = "^3.0"
pytest-recording = "^0.12.0"
pytest-rerunfailures = "^10.2"
pytest-env = "^0.6.2"
poetry-deps-scanner = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]