Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
python-slugify==8.0.4 # https://github.com/un33k/python-slugify
Pillow==11.3.0 # pyup: != 11.2.0 # https://github.com/python-pillow/Pillow
argon2-cffi==25.1.0 # https://github.com/hynek/argon2_cffi
whitenoise==6.9.0 # https://github.com/evansd/whitenoise
whitenoise==6.11.0 # https://github.com/evansd/whitenoise
redis==6.2.0 # https://github.com/redis/redis-py
hiredis==3.2.1 # https://github.com/redis/hiredis-py
hiredis==3.3.0 # https://github.com/redis/hiredis-py
celery==5.5.3 # pyup: < 6.0 # https://github.com/celery/celery
django-celery-beat==2.8.1 # https://github.com/celery/django-celery-beat
django-celery-results==2.6.0 # https://github.com/celery/django-celery-results
# Ccxt
ccxt==2.4.67 # https://github.com/ccxt/ccxt
# Django
# ------------------------------------------------------------------------------
django==5.1.11 # pyup: < 5.2 # https://www.djangoproject.com/
django==5.2.8 # pyup: < 5.2 # https://www.djangoproject.com/
django-environ==0.12.0 # https://github.com/joke2k/django-environ
django-model-utils==5.0.0 # https://github.com/jazzband/django-model-utils
django-allauth[mfa]==65.10.0 # https://github.com/pennersr/django-allauth
django-crispy-forms==2.4 # https://github.com/django-crispy-forms/django-crispy-forms
django-allauth[mfa]==65.13.0 # https://github.com/pennersr/django-allauth
django-crispy-forms==2.5 # https://github.com/django-crispy-forms/django-crispy-forms
crispy-bootstrap5==2025.6 # https://github.com/django-crispy-forms/crispy-bootstrap5
django-redis==6.0.0 # https://github.com/jazzband/django-redis
# Django REST Framework
djangorestframework==3.16.0 # https://github.com/encode/django-rest-framework
django-cors-headers==4.7.0 # https://github.com/adamchainz/django-cors-headers
djangorestframework==3.16.1 # https://github.com/encode/django-rest-framework
django-cors-headers==4.9.0 # https://github.com/adamchainz/django-cors-headers
# DRF-spectacular for api documentation
drf-spectacular==0.28.0 # https://github.com/tfranzel/drf-spectacular
drf-spectacular==0.29.0 # https://github.com/tfranzel/drf-spectacular
22 changes: 11 additions & 11 deletions requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

Werkzeug[watchdog]==3.1.3 # https://github.com/pallets/werkzeug
ipdb==0.13.13 # https://github.com/gotcha/ipdb
psycopg[binary]==3.2.9 # https://github.com/psycopg/psycopg
watchfiles==1.1.0 # https://github.com/samuelcolvin/watchfiles
psycopg[binary]==3.2.12 # https://github.com/psycopg/psycopg
watchfiles==1.1.1 # https://github.com/samuelcolvin/watchfiles

# Testing
# ------------------------------------------------------------------------------
mypy==1.17.0 # https://github.com/python/mypy
django-stubs[compatible-mypy]==5.2.2 # https://github.com/typeddjango/django-stubs
mypy==1.18.2 # https://github.com/python/mypy
django-stubs[compatible-mypy]==5.2.7 # https://github.com/typeddjango/django-stubs
pytest==8.4.1 # https://github.com/pytest-dev/pytest
pytest-sugar==1.0.0 # https://github.com/Teemu/pytest-sugar
djangorestframework-stubs==3.16.0 # https://github.com/typeddjango/djangorestframework-stubs
pytest-sugar==1.1.1 # https://github.com/Teemu/pytest-sugar
djangorestframework-stubs==3.16.5 # https://github.com/typeddjango/djangorestframework-stubs

# Documentation
# ------------------------------------------------------------------------------
Expand All @@ -20,16 +20,16 @@ sphinx-autobuild==2024.10.3 # https://github.com/GaretJax/sphinx-autobuild

# Code quality
# ------------------------------------------------------------------------------
ruff==0.12.4 # https://github.com/astral-sh/ruff
coverage==7.9.2 # https://github.com/nedbat/coveragepy
ruff==0.14.4 # https://github.com/astral-sh/ruff
coverage==7.11.3 # https://github.com/nedbat/coveragepy
djlint==1.36.4 # https://github.com/Riverside-Healthcare/djLint
pre-commit==4.2.0 # https://github.com/pre-commit/pre-commit
pre-commit==4.4.0 # https://github.com/pre-commit/pre-commit

# Django
# ------------------------------------------------------------------------------
factory-boy==3.3.2 # https://github.com/FactoryBoy/factory_boy
factory-boy==3.3.3 # https://github.com/FactoryBoy/factory_boy

django-debug-toolbar==5.2.0 # https://github.com/jazzband/django-debug-toolbar
django-extensions==4.1 # https://github.com/django-extensions/django-extensions
django-coverage-plugin==3.1.1 # https://github.com/nedbat/django_coverage_plugin
django-coverage-plugin==3.2.0 # https://github.com/nedbat/django_coverage_plugin
pytest-django==4.11.1 # https://github.com/pytest-dev/pytest-django
4 changes: 2 additions & 2 deletions requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
-r base.txt

gunicorn==23.0.0 # https://github.com/benoitc/gunicorn
psycopg[c]==3.2.9 # https://github.com/psycopg/psycopg
psycopg[c]==3.2.12 # https://github.com/psycopg/psycopg

# Django
# ------------------------------------------------------------------------------
django-anymail[brevo]==13.0 # https://github.com/anymail/django-anymail
django-anymail[brevo]==13.1 # https://github.com/anymail/django-anymail
Loading