Django 4.2 upgrade

This commit is contained in:
Sonny Bakker 2024-09-07 20:50:38 +02:00
parent b78f03d3b0
commit dfb049ae14
32 changed files with 345 additions and 414 deletions

View file

@ -5,23 +5,22 @@ authors = [{name = 'Sonny', email= 'sonnyba871@gmail.com'}]
license = {text = 'GPL-3.0'}
requires-python = '>=3.11'
dependencies = [
'django~=3.2',
'celery~=5.0',
'psycopg2',
'django~=4.2',
'celery~=5.4',
'psycopg',
'django-axes',
'django-celery-beat~=2.5.0',
'django-celery-beat~=2.7.0',
'django-registration-redux~=2.7',
'django-rest-framework',
"python-memcached<=1.59",
'python-dotenv~=0.12',
'ftfy~=5.8',
'pymemcache',
'python-dotenv~=1.0.1',
'ftfy~=6.2',
'requests',
'requests_oauthlib',
'feedparser',
'bleach',
'beautifulsoup4',
'lxml',
"setuptools>=74.0.0",
]
[project.optional-dependencies]
@ -33,10 +32,11 @@ testing = [
]
development = [
'django-debug-toolbar',
'django-stubs',
'django-extensions',
]
ci = ['coverage>=5.3.1']
production = ['gunicorn~=20.0', 'sentry-sdk~=1.0']
ci = ['coverage~=7.6.1']
production = ['gunicorn~=23.0', 'sentry-sdk~=2.0']
[tool.uv]
environments = ["sys_platform == 'linux'"]