You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 7, 2019. It is now read-only.
If this has the consequence, though, of downloading a different Django version than the one that a user already has installed, it is not an optimal solution.
Two alternatives (which should perhaps be used together):
check early in setup.py to see if a non-compatible version of Django is already installed, and error out if that is the case (like in https://trac-hacks.org/ticket/9800#comment:4 ).
have a runtime check in the top level of versions/models.py, that raises an error if an incompatible version of Django is installed.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
As per https://packaging.python.org/requirements/#install-requires , CleanerVersion's setup.py should limit installation to known compatible Django versions.
If this has the consequence, though, of downloading a different Django version than the one that a user already has installed, it is not an optimal solution.
Two alternatives (which should perhaps be used together):
The text was updated successfully, but these errors were encountered: