Hi Mathieu, We implemented something similar at YPlan but discovered that it wasn't a good idea as a system check, because if a dependency changes from another devs work then often Django can't even start and run the system check. Especially a problem when upgrading Django itself! Instead we implemented it as a function that runs in manage.py before Django is even loaded.
We open sourced our work as https://github.com/YPlan/pip-lock . Check it out. On Mon, 16 Jan 2017 at 04:18, mathieu.tortuyaux <[email protected]> wrote: > Hello everyone, > > I would propose this new Django feature. Now you can check if your > dependencies are up-to-date (e.g with `hypothesis` in attachment picture) > (it runs with Python2.7 && Python3.6). > It is a good habit to check if dependencies are up-to-date, especially for > security reasons. > > I did not find any references about this in Django issues > > So I wondering if I can have any feedback on this ? > > Thank you for taking time to read these words. > > Mathieu Tortuyaux > > > > > > > > > -- > > > You received this message because you are subscribed to the Google Groups > "Django developers (Contributions to Django itself)" group. > > > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > > > To post to this group, send email to [email protected]. > > > Visit this group at https://groups.google.com/group/django-developers. > > > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-developers/5a6fb42e-e5c8-4608-9b20-19fc829473b1%40googlegroups.com > <https://groups.google.com/d/msgid/django-developers/5a6fb42e-e5c8-4608-9b20-19fc829473b1%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > > For more options, visit https://groups.google.com/d/optout. > > > -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/CAMyDDM1CeOVQoH8jN35OwxOJUbhVr99gMtchgFsxbPZXac2tcw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
