From 0f2f34175c7153da1538710234412888dc842808 Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Sat, 13 Jan 2024 17:21:55 +0100 Subject: [PATCH] Upgrade Django to 5.0, update dependencies Signed-off-by: Emmy D'Anello --- requirements.txt | 46 +++++++++++++++++++++++----------------------- tox.ini | 31 ++++++++++++++++--------------- 2 files changed, 39 insertions(+), 38 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5a3d383..4934970 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,26 +1,26 @@ channels[daphne]~=4.0.0 -channels-redis~=4.0.0 -crispy-bootstrap5~=0.7 -Django>=4.1,<5.0 -django-crispy-forms~=1.14 -django-extensions~=3.2 -django-filter~=22.1 -django-haystack~=3.2 -django-mailer~=2.2 -django-phonenumber-field~=7.0 -django-polymorphic~=3.1 -django-tables2~=2.4 -djangorestframework~=3.14 -django-rest-polymorphic~=0.1 -gunicorn~=20.1 +channels-redis~=4.2.0 +crispy-bootstrap5~=2023.10 +Django>=5.0,<6.0 +django-crispy-forms~=2.1 +django-extensions~=3.2.3 +django-filter~=23.5 +django-haystack~=3.2.1 +django-mailer~=2.3.1 +django-phonenumber-field~=7.3.0 +django-polymorphic~=3.1.0 +django-tables2~=2.7.0 +djangorestframework~=3.14.0 +django-rest-polymorphic~=0.1.10 +gunicorn~=20.2.0 odfpy~=1.4.1 -phonenumbers~=8.12.57 -psycopg2-binary~=2.9.5 -pypdf~=3.4 -ipython~=8.11.0 -python-magic~=0.4.26 -requests~=2.28.1 +phonenumbers~=8.13.27 +psycopg2-binary~=3.1.17 +pypdf~=3.17.4 +ipython~=8.20.0 +python-magic~=0.4.27 +requests~=2.31.0 sympasoap~=1.1 -uvicorn~=0.17 -websockets~=10.4 -whoosh~=2.7 \ No newline at end of file +uvicorn~=0.25.0 +websockets~=12.0 +whoosh~=2.7.4 \ No newline at end of file diff --git a/tox.ini b/tox.ini index a6e32e4..e082b1f 100644 --- a/tox.ini +++ b/tox.ini @@ -11,22 +11,23 @@ sitepackages = False deps = coverage channels[daphne]~=4.0.0 - crispy-bootstrap5~=0.7 - Django>=4.2,<5.0 - django-crispy-forms~=1.14 - django-filter~=22.1 - django-haystack~=3.2 - django-phonenumber-field~=7.0 - django-polymorphic~=3.1 - django-tables2~=2.4 - djangorestframework~=3.14 - django-rest-polymorphic~=0.1 + crispy-bootstrap5~=2023.10 + Django>=5.0,<6.0 + django-crispy-forms~=2.1 + django-filter~=23.5 + django-haystack~=3.2.1 + django-phonenumber-field~=7.3.0 + django-polymorphic~=3.1.0 + django-tables2~=2.7.0 + djangorestframework~=3.14.0 + django-rest-polymorphic~=0.1.10 odfpy~=1.4.1 - phonenumbers~=8.12.57 - pypdf~=3.4 - python-magic~=0.4.26 - requests~=2.28.1 - whoosh~=2.7 + phonenumbers~=8.13.27 + pypdf~=3.17.4 + python-magic~=0.4.27 + requests~=2.31.0 + whoosh~=2.7.4 + commands = coverage run --source=api,draw,logs,participation,registration,tfjm ./manage.py test api/ draw/ logs/ participation/ registration/ tfjm/ coverage report -m