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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django>=4.0,<6
Django>=4.2.26
Copy link

Choose a reason for hiding this comment

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

Bug: Untested Django versions risk dependency conflicts.

The Django version constraint changed from >=4.0,<6 to >=4.2.26, removing the upper bound. This allows Django 6.x (and beyond) to be installed, but django-phonenumber-field==6.1.0 on line 4 may not support Django 6.x. The CI workflow only tests up to Django 5.0, and Django 6.x is still under development. This creates a risk of installing incompatible package versions that haven't been tested together.

Fix in Cursor Fix in Web

Sphinx>=1.2.0
phonenumbers>=7.0.2
django-phonenumber-field==6.1.0
Expand Down
Loading