-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade Django to 2.2 LTS #611
Comments
This comment has been minimized.
This comment has been minimized.
I could take this up and migrate Django to 3 altogether. It would be a good starting point for me to have a better understanding about each component of this project. |
This is basically a critical task. The things we'd need to do here are:
Thanks to an utter lack of tests, we'd need to do manual A/B tests for differences between the versions. |
After #653, I started working on fixing third party deprecation warnings and upgrading to We are using django-uuidfield at devices models. The problem is
And now the package is not maintained. There is a pr fixing this issue, also I found this fork which I think is a merge of this pr. So what should we do in this case, should we deploy this to our own pypi, fixing the issue? Suggestions @pradyunsg, @palnabarun, @ananyo2012 ? |
I have 0 interest in maintaining a fork. Doesn't Django have a UUIDField built in? https://stackoverflow.com/questions/32528224/#32528292 |
Yep @pradyunsg is right. Django has uuid field for models - https://docs.djangoproject.com/en/1.11/ref/models/fields/#uuidfield |
I'll let someone else handle writing the migration for this lol. |
Okay, so we'll move to Django's UUIDField and figure out a way to migrate old data to this. |
The things we'd need to do here are:
The text was updated successfully, but these errors were encountered: