remove django-model-utils dependency (#40616)

This commit is contained in:
Emmanuel Cazenave 2020-03-10 15:00:12 +01:00
parent d6c6f179f9
commit 3d05c783e3
2 changed files with 2 additions and 4 deletions

3
debian/control vendored
View File

@ -11,7 +11,6 @@ Package: python-django-journal
Architecture: all
Depends: ${misc:Depends},
python (>= 2.6),
python-django (>= 1.8),
python-django-model-utils
python-django (>= 1.8)
Description: Django application to keep a structured -- i.e. not just log
strings -- journal of events in your project

View File

@ -125,6 +125,5 @@ setup(name='django-journal',
'test': test
},
install_requires=[
'django >= 1.8,<2.0',
'django-model-utils<4',
'django >= 1.8,<2.0'
])