add pytz dependency (#26992)

This commit is contained in:
Emmanuel Cazenave 2018-10-12 15:33:47 +02:00
parent 975bc95481
commit d383315b34
2 changed files with 3 additions and 0 deletions

2
debian/control vendored
View File

@ -10,6 +10,7 @@ Build-Depends: debhelper (>= 9),
python-setuptools (>= 0.6b3),
python-six,
python-mock,
python-tz,
python3-all,
python3-crypto,
python3-pytest,
@ -17,6 +18,7 @@ Build-Depends: debhelper (>= 9),
python3-setuptools,
python3-six,
python3-mock
python3-tz
Standards-Version: 3.9.1
X-Python-Version: >= 2.7
X-Python3-Version: >= 3.4

View File

@ -106,6 +106,7 @@ setuptools.setup(
packages=['eopayment'],
install_requires=[
'pycrypto >= 2.5',
'pytz',
'requests',
'six',
],