Skip to content
Merged
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
6 changes: 3 additions & 3 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Test dependencies for cookiecutter template
pytest>=9.0.2
pytest>=9.0.3
cookiecutter>=2.7.1
pytest-cov>=7.0.0
pytest-cov>=7.1.0
pytest-mock>=3.15.1
tox>=4.49.1
tox>=4.53.0
10 changes: 5 additions & 5 deletions {{ cookiecutter.project_slug }}/requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
django>=6.0.0,<7.0 # Use Django 6.x

# API Framework
django-ninja>=1.6.0,<2.0
django-ninja>=1.6.2,<2.0

# Celery and related packages
celery>=5.6.2,<6.0
redis>=7.3.0,<8.0 # Python client for Redis (used by Celery)
celery>=5.6.3,<6.0
redis>=7.4.0,<8.0 # Python client for Redis (used by Celery)
django-celery-beat>=2.9.0,<3.0 # Database-backed periodic task scheduler
django-celery-results>=2.6.0,<3.0 # Celery result backend using Django ORM

Expand All @@ -27,12 +27,12 @@ requests-oauthlib>=2.0.0,<3.0 # OAuth2 client library
social-auth-app-django>=5.7.0,<6.0 # Social authentication (Google, GitHub, etc.)

# Object-level Permissions
django-guardian>=3.3.0,<4.0
django-guardian>=3.3.1,<4.0

# Environment variable management
python-decouple>=3.8,<4.0
# Optional: For parsing DATABASE_URL format easily
dj-database-url>=3.1.2,<4.0

# WSGI server for production
gunicorn>=25.1.0,<26.0
gunicorn>=25.3.0,<26.0
6 changes: 3 additions & 3 deletions {{ cookiecutter.project_slug }}/requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
# Useful Django extensions (runserver_plus, shell_plus, etc.)
django-extensions>=4.1,<5.0
# For debugging in the browser
django-debug-toolbar>=6.2.0,<7.0
django-debug-toolbar>=6.3.0,<7.0
# Werkzeug might be needed by runserver_plus or debug toolbar in some cases
Werkzeug>=3.1.6,<4.0
Werkzeug>=3.1.8,<4.0

# Testing libraries
pytest>=9.0.2,<10.0
pytest>=9.0.3,<10.0
pytest-django>=4.12.0,<5.0

# Code formatting and linting
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
whitenoise[brotli]>=6.12.0,<7.0 # Includes brotli compression support

# Production monitoring and logging
sentry-sdk[django]>=2.54.0,<3.0 # Error tracking and performance monitoring
sentry-sdk[django]>=2.58.0,<3.0 # Error tracking and performance monitoring

# Add any other production-specific dependencies here
# e.g., monitoring agents, specific logging libraries
Loading