Projet

Général

Profil

0001-Enabled-django-3.2-testing-in-tox-setup.py-file.patch

A. Berriot, 28 juillet 2022 16:24

Télécharger (1,48 ko)

Voir les différences:

Subject: [PATCH 1/4] Enabled django 3.2 testing in tox/setup.py file

 setup.py | 4 ++--
 tox.ini  | 9 +++++++--
 2 files changed, 9 insertions(+), 4 deletions(-)
setup.py
138 138
    scripts=['manage.py'],
139 139
    include_package_data=True,
140 140
    install_requires=[
141
        'django >= 1.11, <2.3',
142
        'django-model-utils<4',
141
        'django >= 1.11, <3.3',
142
        'django-model-utils<4.3',
143 143
        'requests',
144 144
        'gadjo',
145 145
        'phpserialize',
tox.ini
15 15
  coverage: COVERAGE=--junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=passerelle/ --cov-config .coveragerc -Wignore
16 16
deps =
17 17
  django22: django>=2.2,<2.3
18
  django32: django>=3.2,<3.3
18 19
  xmlschema14: xmlschema<1.5
19 20
  xmlschema10: xmlschema<1.1
20
  psycopg2-binary<2.9
21
  django32: psycopg2-binary
22
  django22: psycopg2-binary<2.9
23
  django32: django-model-utils>=4.2
24
  django22: django-model-utils<4.2
21 25
  pytest-cov
22 26
  pytest-django
23 27
  pytest-xdist
......
26 30
  mock<4
27 31
  httmock
28 32
  python-dateutil
29
  django-webtest<1.9.3
33
  django32: django-webtest
34
  django22: django-webtest<1.9.3
30 35
  lxml
31 36
  mohawk
32 37
  pytest-freezegun
33
-