jedie/django-reversion-compare

Support django 1.11

lcd1232 opened this issue · 6 comments

Does it support django >= 1.11? Right now if you want to install this package, django will be downgrade to 1.10.7

I've forked this and updated the requirement. Been using it for a few weeks now and I've not encountered any show stopping issue, though I didn't use it extensively enough to be 100% sure.

You can add this to your requirement.txt if you want to try out.
git+https://github.com/faultylee/django-reversion-compare.git@a9840f12100e30dc3b3c8bf4dc1c5760708a45a0#egg=django_reversion_compare

Alternatively you can also install this package as is and then update your django after that, pip won't complaint

@faultylee Yes I know that I can manually update this package and django after that, but the problem is that I using jenkins for deploying site on production and there I have only one line:
pip install -r requirements
So I can't make this automatically and each time django will be uninstalling because it will trying to meet django-reversion-compare requirements.

@lcd1232 you can use this git+https://github.com/faultylee/django-reversion-compare.git@a9840f12100e30dc3b3c8bf4dc1c5760708a45a0#egg=django_reversion_compare in your requirement.txt or fork your own and just change the path and hash accordingly. I'm doing the same with gitlab-ci

See here https://pip.pypa.io/en/stable/reference/pip_install/#git

jedie commented

Sorry for the late response...

I didn't use Django v1.11, yet ;)

With eba959c I activate tests with django 1.11 and drop tests with django 1.9

Tests runs here: https://travis-ci.org/jedie/django-reversion-compare/builds/265577314

If it's worked, i made a new release...

jedie commented

Tests runs fine... Release v0.8.0 is out ;)