Mise à jour vers Django 4.2

This commit is contained in:
Claude Paroz 2023-06-08 11:10:01 +02:00
parent bf324cd240
commit 110490d4ae
2 changed files with 10 additions and 3 deletions

View file

@ -100,7 +100,14 @@ INSTALLED_APPS = (
FILE_UPLOAD_HANDLERS = ["django.core.files.uploadhandler.TemporaryFileUploadHandler"]
STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage'
STORAGES = {
"default": {
"BACKEND": "django.core.files.storage.FileSystemStorage",
},
"staticfiles": {
"BACKEND": "django.contrib.staticfiles.storage.ManifestStaticFilesStorage",
},
}
ALLOWED_HOSTS = ['localhost', 'cpne-2s-stages.s2.rpn.ch']

View file

@ -1,6 +1,6 @@
Django~=4.1.0
Django~=4.2.0
tabimport==0.5.1
xlrd<2 # Required by tabimport
openpyxl==3.0.5
openpyxl==3.1.2
reportlab
django-summernote==0.8.20.0