Update dependencies to those on Debian Bookworm
This commit is contained in:
parent
0e7be7e27c
commit
e17273391d
|
@ -13,7 +13,8 @@ from django.core.exceptions import ValidationError
|
||||||
from django.core.validators import FileExtensionValidator
|
from django.core.validators import FileExtensionValidator
|
||||||
from django.utils import formats
|
from django.utils import formats
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from PyPDF3 import PdfFileReader
|
from pypdf import PdfFileReader
|
||||||
|
|
||||||
from registration.models import VolunteerRegistration
|
from registration.models import VolunteerRegistration
|
||||||
|
|
||||||
from .models import Note, Participation, Passage, Pool, Solution, Synthesis, Team, Tournament
|
from .models import Note, Participation, Passage, Pool, Solution, Synthesis, Team, Tournament
|
||||||
|
|
|
@ -1,23 +1,23 @@
|
||||||
Django>=3.2,<4.0
|
Django>=3.2,<4.0
|
||||||
django-bootstrap-datepicker-plus~=4.0
|
django-bootstrap-datepicker-plus~=4.0
|
||||||
django-cas-server~=1.3
|
django-cas-server~=2.0
|
||||||
django-crispy-forms~=1.9
|
django-crispy-forms~=1.14
|
||||||
django-extensions~=3.0
|
django-extensions~=3.2
|
||||||
django-filter~=2.4
|
django-filter~=22.1
|
||||||
django-haystack~=3.0
|
django-haystack~=3.2
|
||||||
django-mailer~=2.1
|
django-mailer~=2.2
|
||||||
django-phonenumber-field~=5.0.0
|
django-phonenumber-field~=7.0
|
||||||
django-polymorphic~=3.0
|
django-polymorphic~=3.1
|
||||||
django-tables2~=2.4
|
django-tables2~=2.4
|
||||||
djangorestframework~=3.12
|
djangorestframework~=3.14
|
||||||
django-rest-polymorphic~=0.1
|
django-rest-polymorphic~=0.1
|
||||||
gunicorn~=20.1
|
gunicorn~=20.1
|
||||||
matrix-nio~=0.16
|
matrix-nio~=0.20
|
||||||
phonenumbers~=8.9.10
|
phonenumbers~=8.12.57
|
||||||
psycopg2-binary~=2.8
|
psycopg2-binary~=2.9.5
|
||||||
PyPDF3~=1.0.2
|
pypdf~=3.4
|
||||||
ipython~=7.19.0
|
ipython~=8.5.0
|
||||||
python-magic>=0.4.22
|
python-magic~=0.4.26
|
||||||
requests~=2.25.1
|
requests~=2.28.1
|
||||||
sympasoap~=1.0
|
sympasoap~=1.1
|
||||||
whoosh~=2.7
|
whoosh~=2.7
|
19
tox.ini
19
tox.ini
|
@ -13,17 +13,18 @@ deps =
|
||||||
coverage
|
coverage
|
||||||
Django>=3.2,<4.0
|
Django>=3.2,<4.0
|
||||||
django-bootstrap-datepicker-plus~=4.0
|
django-bootstrap-datepicker-plus~=4.0
|
||||||
django-crispy-forms~=1.9
|
django-crispy-forms~=1.14
|
||||||
django-filter~=2.4
|
django-filter~=22.1
|
||||||
django-haystack~=3.0
|
django-haystack~=3.2
|
||||||
django-phonenumber-field~=5.0.0
|
django-phonenumber-field~=7.0
|
||||||
django-polymorphic~=3.0
|
django-polymorphic~=3.1
|
||||||
django-tables2~=2.4
|
django-tables2~=2.4
|
||||||
djangorestframework~=3.12
|
djangorestframework~=3.14
|
||||||
django-rest-polymorphic~=0.1
|
django-rest-polymorphic~=0.1
|
||||||
phonenumbers~=8.9.10
|
phonenumbers~=8.12.57
|
||||||
PyPDF3~=1.0.2
|
pypdf~=3.4
|
||||||
python-magic==0.4.22
|
python-magic~=0.4.26
|
||||||
|
requests~=2.28.1
|
||||||
whoosh~=2.7
|
whoosh~=2.7
|
||||||
commands =
|
commands =
|
||||||
coverage run --source=apps,tfjm ./manage.py test apps/ tfjm/
|
coverage run --source=apps,tfjm ./manage.py test apps/ tfjm/
|
||||||
|
|
Loading…
Reference in New Issue