Skip to content
Open
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
3 changes: 2 additions & 1 deletion requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ django-anymail # https://github.com/anymail/django-anymail

# Elastic-APM # https://pypi.org/project/elastic-apm/
# ------------------------------------------------------------------------------
elastic-apm==6.15.1
elastic-apm==6.15.1
django>=4.2.26 # not directly required, pinned by Snyk to avoid a vulnerability
Comment on lines +19 to +20

Copilot AI Nov 8, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version constraint django>=4.2.26 conflicts with the pinned version in base.txt which specifies django==4.1.6. Since production.txt includes base.txt (line 3), this creates a dependency conflict. The base Django version should be upgraded to at least 4.2.26, or this pin should specify a compatible constraint like django>=4.2.26,<5.0 if the project needs to stay within Django 4.x series.

Suggested change
elastic-apm==6.15.1
django>=4.2.26 # not directly required, pinned by Snyk to avoid a vulnerability
elastic-apm==6.15.1

Copilot uses AI. Check for mistakes.