Closed mdunc closed 2 years ago
Due to the install_requires = ["Django>=1.11,<=4"] constraint, only Django 4.0 is compatible and not the recent 4.0.1 patch. Perhaps the <=4 should just be dropped completely or changed to <4.1 if there are concerns that 4.1 could break things?
install_requires = ["Django>=1.11,<=4"]
<=4
<4.1
Thanks @mdunc. This has been fixed and I've released 5.0.7!
Due to the
install_requires = ["Django>=1.11,<=4"]
constraint, only Django 4.0 is compatible and not the recent 4.0.1 patch. Perhaps the<=4
should just be dropped completely or changed to<4.1
if there are concerns that 4.1 could break things?