Projet

Général

Profil

0002-tox-explicitly-match-envs-dependencies-with-debian-r.patch

Paul Marillonnet, 22 juin 2022 22:15

Télécharger (2,18 ko)

Voir les différences:

Subject: [PATCH 2/3] tox: explicitly match envs dependencies with debian
 releases (#66488)

 tox.ini | 37 +++++++++++++++++++++----------------
 1 file changed, 21 insertions(+), 16 deletions(-)
tox.ini
6 6
[tox]
7 7
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/authentic/
8 8
envlist =
9
  authentic-py3-dj22-drf39-djtables1211
10
  authentic-py3-dj22-drf312-djtables211
11
  authentic-py3-dj32-drf312-djtables241
9
  authentic-py3-buster
10
  authentic-py3-bullseye
11
  authentic-py3-stable-backports
12 12
  code-style
13 13

  
14 14
[tox:jenkins]
15 15
envlist =
16 16
  update-locales
17
  authentic-py3-dj22-drf39-djtables1211
17
  authentic-py3-buster
18 18
  check-migrations
19 19
  code-style
20 20
  pylint
......
49 49
  PYTESTOPTIONS
50 50
deps = 
51 51
  pip > 9
52
  dj22: django<2.3
53
  dj22: django-model-utils<4
54
  dj22: django-select2>=5,<6
55
  dj32: django>=3.2.12,<3.3
56
  dj32: django-model-utils>=4.2,<4.3
57
  dj32: django-select2>=7.7,<7.8
58
  djtables1211: django-tables2==1.21.1
59
  djtables211: django-tables2==2.1.1
60
  djtables241: django-tables2==2.4.1
52
  buster: django<2.3
53
  buster: django-model-utils<4
54
  buster: django-select2>=5,<6
55
  bullseye: django<2.3
56
  bullseye: django-model-utils<4
57
  bullseye: django-select2>=5,<6
58
  stable-backports: django>=3.2.12,<3.3
59
  stable-backports: django-model-utils>=4.2,<4.3
60
  stable-backports: django-select2>=7.7,<7.8
61
  buster: django-tables2==1.21.1
62
  bullseye: django-tables2==2.1.1
63
  stable-backports: django-tables2==2.4.1
61 64
  psycopg2-binary
62
  dj22: psycopg2-binary<2.9
65
  buster: psycopg2-binary<2.9
66
  bullseye: psycopg2-binary<2.9
63 67
  coverage
64 68
  pytest-cov
65 69
  pytest-django
......
83 87
  ldaptools>=0.24
84 88
  rbac: numpy
85 89
  django-filter
86
  drf39: djangorestframework>=3.9.2,<3.10
87
  drf312: djangorestframework>=3.12,<3.13
90
  buster: djangorestframework>=3.9.2,<3.10
91
  bullseye: djangorestframework>=3.12,<3.13
92
  stable-backports: djangorestframework>=3.12,<3.13
88 93
usedevelop = True
89 94
commands =
90 95
  ./getlasso3.sh
91
-