Projet

Général

Profil

0001-use-zeep-2.5-39117.patch

Benjamin Dauvergne, 20 janvier 2020 15:24

Télécharger (1,37 ko)

Voir les différences:

Subject: [PATCH] use zeep >= 2.5 (#39117)

 debian/control | 4 ++--
 setup.py       | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
debian/control
23 23
Package: python-eopayment
24 24
Architecture: all
25 25
Depends: ${python:Depends},
26
 python-zeep,
26
 python-zeep (>= 2.5),
27 27
 python-click
28 28
Description: common API to access online payment services
29 29
 eopayment is a Python module to interface with French's bank credit
......
33 33
Package: python3-eopayment
34 34
Architecture: all
35 35
Depends: ${python3:Depends},
36
 python3-zeep,
36
 python3-zeep (>= 2.5),
37 37
 python3-click
38 38
Description: common API to access online payment services (Python 3)
39 39
 eopayment is a Python module to interface with French's bank credit
setup.py
124 124
        'requests',
125 125
        'six',
126 126
        'click',
127
        'zeep',
127
        'zeep >= 2.5',
128 128
    ],
129 129
    cmdclass={
130 130
        'sdist': eo_sdist,
131
-