Re: Check if dependencies are up to date

2017-01-18 Thread Dmitry Gladkov
On 16 January 2017 at 15:36, Adam Johnson wrote: > The signals as proposed can't really be used for the staticfiles override, > since that requires subclassing and wrapping a function to change the > handler ( source >

Re: Check if dependencies are up to date

2017-01-16 Thread Adam Johnson
Woops I misunderstood the original idea. YPlan's *pip-lock* isn't for checking if the packages are the latest versions as on PyPI, it just checks the current virtualenv is in sync with the requirements.txt file(s) that define it - e.g. if a developer adds a new dependency, the rest of the team need

Re: Check if dependencies are up to date

2017-01-16 Thread James Bennett
On Mon, Jan 16, 2017 at 4:47 AM, Adam Johnson wrote: > 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 prob

Re: Check if dependencies are up to date

2017-01-16 Thread Adam Johnson
our work as https://github.com/YPlan/pip-lock . Check it >> out. >> >> On Mon, 16 Jan 2017 at 04:18, mathieu.tortuyaux < >> mathieu.tortuy...@gmail.com> wrote: >> >>> Hello everyone, >>> >>> I would propose this new Django feature. Now y

Re: Check if dependencies are up to date

2017-01-16 Thread Dmitry Gladkov
aux < > mathieu.tortuy...@gmail.com> 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 &&

Re: Check if dependencies are up to date

2017-01-16 Thread Adam Johnson
ow 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 a

Check if dependencies are up to date

2017-01-16 Thread mathieu.tortuyaux
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 reas