mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-19 22:42:17 +00:00
Port to Django 5.2
This commit is contained in:
120
pyproject.toml
120
pyproject.toml
@@ -5,87 +5,79 @@ description = "A Django-based event booking system designed for use by TEC PA an
|
||||
readme = "README.md"
|
||||
requires-python = "~=3.10.0"
|
||||
dependencies = [
|
||||
"ansicolors~=1.1.8",
|
||||
"asgiref~=3.3.1",
|
||||
"backports.tempfile~=1.0",
|
||||
"backports.weakref~=1.0.post1",
|
||||
"beautifulsoup4~=4.9.3",
|
||||
"Brotli~=1.0.9",
|
||||
"cachetools~=4.2.1",
|
||||
"chardet~=4.0.0",
|
||||
"configparser~=5.0.1",
|
||||
"contextlib2~=0.6.0.post1",
|
||||
"cssselect~=1.1.0",
|
||||
"cssutils~=1.0.2",
|
||||
"dj-database-url~=0.5.0",
|
||||
"dj-static~=0.0.6",
|
||||
"Django~=3.2",
|
||||
"django-debug-toolbar~=4.0.0",
|
||||
"django-filter~=2.4.0",
|
||||
"django-ical~=1.7.1",
|
||||
"django-recurrence~=1.10.3",
|
||||
"django-registration-redux~=2.9",
|
||||
"django-reversion~=3.0.9",
|
||||
"django-widget-tweaks~=1.4.8",
|
||||
"django-htmlmin~=0.11.0",
|
||||
"ansicolors",
|
||||
"asgiref",
|
||||
"beautifulsoup4",
|
||||
"Brotli",
|
||||
"cachetools",
|
||||
"chardet",
|
||||
"configparser",
|
||||
"contextlib2",
|
||||
"cssselect",
|
||||
"cssutils",
|
||||
"dj-database-url",
|
||||
"dj-static",
|
||||
"Django~=5.2",
|
||||
"django-filter",
|
||||
"django-ical",
|
||||
"django-recurrence",
|
||||
"django-registration-redux",
|
||||
"django-reversion",
|
||||
"django-widget-tweaks",
|
||||
"django-htmlmin",
|
||||
"envparse",
|
||||
"gunicorn~=22.0.0",
|
||||
"icalendar~=4.0.7",
|
||||
"idna~=3.7",
|
||||
"Markdown~=3.3.3",
|
||||
"msgpack~=1.0.2",
|
||||
"pep517~=0.9.1",
|
||||
"Pillow~=10.0.1",
|
||||
"premailer~=3.7.0",
|
||||
"progress~=1.5",
|
||||
"psutil~=5.8.0",
|
||||
"gunicorn",
|
||||
"icalendar",
|
||||
"idna",
|
||||
"Markdown",
|
||||
"msgpack",
|
||||
"pep517",
|
||||
"Pillow",
|
||||
"premailer",
|
||||
"progress",
|
||||
"psutil",
|
||||
"psycopg2-binary",
|
||||
"Pygments~=2.15.0",
|
||||
"pyparsing~=2.4.7",
|
||||
"PyPDF2~=1.27.5",
|
||||
"PyPOM~=2.2.4",
|
||||
"python-dateutil~=2.8.1",
|
||||
"pytoml~=0.1.21",
|
||||
"pytz~=2020.5",
|
||||
"Pygments",
|
||||
"pyparsing",
|
||||
"PyPDF2",
|
||||
"pytoml",
|
||||
"pytz",
|
||||
"reportlab",
|
||||
"requests~=2.32.3",
|
||||
"retrying~=1.3.3",
|
||||
"simplejson~=3.17.2",
|
||||
"six~=1.15.0",
|
||||
"soupsieve~=2.1",
|
||||
"sqlparse~=0.5.0",
|
||||
"static3~=0.7.0",
|
||||
"svg2rlg~=0.3",
|
||||
"tini~=3.0.1",
|
||||
"tornado~=6.3",
|
||||
"urllib3~=1.26.19",
|
||||
"whitenoise~=5.2.0",
|
||||
"yolk~=0.4.3",
|
||||
"zipp~=3.4.0",
|
||||
"zope.component~=4.6.2",
|
||||
"zope.deferredimport~=4.3.1",
|
||||
"zope.deprecation~=4.4.0",
|
||||
"zope.event~=4.5.0",
|
||||
"zope.hookable~=5.0.1",
|
||||
"zope.proxy~=4.3.5",
|
||||
"zope.schema~=6.0.1",
|
||||
"retrying",
|
||||
"simplejson",
|
||||
"soupsieve",
|
||||
"sqlparse",
|
||||
"static3",
|
||||
"svg2rlg",
|
||||
"tornado",
|
||||
"urllib3",
|
||||
"whitenoise",
|
||||
"yolk",
|
||||
"zipp",
|
||||
"zope.component",
|
||||
"zope.deferredimport",
|
||||
"zope.deprecation",
|
||||
"zope.event",
|
||||
"zope.hookable",
|
||||
"zope.proxy",
|
||||
"zope.schema",
|
||||
"sentry-sdk",
|
||||
"diff-match-patch",
|
||||
"python-barcode",
|
||||
"django-hCaptcha",
|
||||
"importlib-metadata",
|
||||
"django-hcaptcha",
|
||||
"z3c.rml",
|
||||
"pikepdf",
|
||||
"django-queryable-properties",
|
||||
"django-mass-edit",
|
||||
"selenium~=4.9.1",
|
||||
"selenium",
|
||||
"zope.interface",
|
||||
]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"pycodestyle~=2.9.1",
|
||||
"PyPOM",
|
||||
"pycodestyle",
|
||||
"coveralls",
|
||||
"django-coverage-plugin",
|
||||
"pytest-cov",
|
||||
|
||||
Reference in New Issue
Block a user