Projet

Général

Profil

0001-remove-django-model-utils-dependency-40616.patch

Emmanuel Cazenave, 30 avril 2020 16:44

Télécharger (1,07 ko)

Voir les différences:

Subject: [PATCH] remove django-model-utils dependency (#40616)

 debian/control | 3 +--
 setup.py       | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)
debian/control
11 11
Architecture: all
12 12
Depends: ${misc:Depends},
13 13
    python (>= 2.6),
14
    python-django (>= 1.8),
15
    python-django-model-utils
14
    python-django (>= 1.8)
16 15
Description: Django application to keep a structured -- i.e. not just log
17 16
 strings -- journal of events in your project
setup.py
125 125
          'test': test
126 126
      },
127 127
      install_requires=[
128
          'django >= 1.8,<2.0',
129
          'django-model-utils<4',
128
          'django >= 1.8,<2.0'
130 129
      ])
131
-