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
4 changes: 3 additions & 1 deletion requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,6 @@ elastic-apm==6.21.4.post8347027212 # https://pypi.org/project/elastic-apm/
# SECURITY UPDATES
# ==============================================================================

setuptools>=68.2.2 # not directly required, pinned by Snyk to avoid a vulnerability
setuptools>=68.2.2 # not directly required, pinned by Snyk to avoid a vulnerability
django>=4.2.27 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

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

Adding django>=4.2.27 here creates a conflict with the existing Django version specified in base.txt (line 19: django==5.2.7). Since production.txt includes base.txt via -r base.txt (line 9), this will cause dependency resolution conflicts.

The Django version in base.txt is already 5.2.7, which is newer than 4.2.27 and should already address the security vulnerabilities fixed in 4.2.27. This line should be removed, or if a security vulnerability exists in Django 5.2.7, the version in base.txt should be updated instead.

Suggested change
django>=4.2.27 # not directly required, pinned by Snyk to avoid a vulnerability

Copilot uses AI. Check for mistakes.
sqlparse>=0.5.4 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

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

Missing space after # in the comment. For consistency with other comments in this file (e.g., line 44 and throughout the file), there should be a space between # and the comment text.

Suggested change
sqlparse>=0.5.4 # not directly required, pinned by Snyk to avoid a vulnerability
sqlparse>=0.5.4 # not directly required, pinned by Snyk to avoid a vulnerability

Copilot uses AI. Check for mistakes.
Loading