Projet

Général

Profil

0008-setup.py-upgrade-xmlschema-62631.patch

Voir les différences:

Subject: [PATCH 8/8] setup.py: upgrade xmlschema (#62631)

 debian/control | 2 +-
 setup.py       | 2 +-
 tox.ini        | 4 +++-
 3 files changed, 5 insertions(+), 3 deletions(-)
debian/control
32 32
    python3-unidecode,
33 33
    python3-pyexcel-io,
34 34
    python3-pyexcel-ods,
35 35
    python3-pyexcel-xls,
36 36
    python3-pycryptodome,
37 37
    python3-feedparser,
38 38
    python3-pdfrw,
39 39
    python3-httplib2,
40
    python3-xmlschema (< 1.1)
40
    python3-xmlschema
41 41
Description: Uniform access to multiple data sources and services (Python module)
42 42

  
43 43
Package: passerelle
44 44
Architecture: all
45 45
Depends: ${misc:Depends}, adduser,
46 46
    python3-passerelle (= ${binary:Version}),
47 47
    python3-hobo,
48 48
    python3-django-tenant-schemas,
setup.py
118 118
        'Pillow',
119 119
        'jsonschema < 3.1',
120 120
        'zeep >= 3.2',
121 121
        'pycryptodomex',
122 122
        'unidecode',
123 123
        'paramiko',
124 124
        'pdfrw',
125 125
        'httplib2',
126
        'xmlschema<1.1',
126
        'xmlschema',
127 127
        'pytz',
128 128
    ],
129 129
    cmdclass={
130 130
        'build': build,
131 131
        'compile_translations': compile_translations,
132 132
        'install_lib': install_lib,
133 133
        'sdist': eo_sdist,
134 134
    },
tox.ini
1 1
[tox]
2 2
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/passerelle/{env:BRANCH_NAME:}
3
envlist = py3-django22-codestyle-coverage
3
envlist = py3-django22-xmlschema14-codestyle-coverage,py3-django22-xmlschema10
4 4

  
5 5
[testenv]
6 6
usedevelop = True
7 7
setenv =
8 8
  DJANGO_SETTINGS_MODULE=passerelle.settings
9 9
  PASSERELLE_SETTINGS_FILE=tests/settings.py
10 10
  BRANCH_NAME={env:BRANCH_NAME:}
11 11
  WCSCTL=wcs/wcsctl.py
12 12
  SETUPTOOLS_USE_DISTUTILS=stdlib
13 13
  fast: FAST=--nomigrations
14 14
  coverage: COVERAGE=--junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=passerelle/ --cov-config .coveragerc -Wignore
15 15
deps =
16 16
  django22: django>=2.2,<2.3
17
  xmlschema14: xmlschema<1.5
18
  xmlschema10: xmlschema<1.1
17 19
  psycopg2-binary<2.9
18 20
  pytest-cov
19 21
  pytest-django
20 22
  pytest!=6.0.0
21 23
  WebTest
22 24
  mock<4
23 25
  httmock
24 26
  python-dateutil
25
-