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
5 changes: 4 additions & 1 deletion requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,7 @@ tornado>=6.3.3 # not directly required, pinned by Snyk to avoid a vulnerability

django-test-migrations==1.3.0
Copy link

Copilot AI Dec 8, 2025

Choose a reason for hiding this comment

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

django-test-migrations==1.3.0 is already declared on line 15 and line 41. This creates a duplicate dependency declaration in the same requirements file, which can cause confusion and potential issues during dependency resolution.

Suggested change
django-test-migrations==1.3.0

Copilot uses AI. Check for mistakes.

django-silk==5.3.2
django-silk==5.3.2
django>=4.2.27 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link

Copilot AI Dec 8, 2025

Choose a reason for hiding this comment

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

This Django version pin conflicts with the existing django==5.2.7 in requirements/base.txt (line 19). Since local.txt includes -r base.txt, pip will encounter a conflict between the exact pin (5.2.7) and the minimum version constraint (>=4.2.27).

While the constraint allows 5.2.7, having conflicting declarations can cause confusion and unexpected behavior. Consider either:

  1. Removing this line if base.txt already pins Django at a secure version
  2. Upgrading the version in base.txt to match the security requirements
  3. Using a version range that doesn't conflict (e.g., django>=5.2.7)
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
urllib3>=2.6.0 # not directly required, pinned by Snyk to avoid a vulnerability
Loading