Projet

Général

Profil

0001-specify-django-version-compatibility-23284.patch

Emmanuel Cazenave, 19 avril 2018 13:19

Télécharger (712 octets)

Voir les différences:

Subject: [PATCH] specify django version compatibility (#23284)

 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
setup.py
120 120
          'test': test
121 121
      },
122 122
      install_requires=[
123
          'django >= 1.7',
123
          'django >= 1.7,<1.9',
124 124
          'django-model-utils',
125 125
      ],
126 126
      setup_requires=[
127
          'django >= 1.4.2',
127
          'django >= 1.7,<1.9',
128 128
      ])
129
-