From 7346519207a9a4bc60bb8e35f98ea1d5ec8d7bd1 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Mon, 30 Nov 2015 12:46:20 +0100 Subject: [PATCH] add dependency on eopayment >=1.3 (#9025) --- debian/control | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index a263bd7..3afa7c5 100644 --- a/debian/control +++ b/debian/control @@ -7,6 +7,6 @@ Standards-Version: 3.9.1 Package: python-lingo Architecture: all -Depends: ${misc:Depends}, ${python:Depends}, python-eopayment, python-dateutil +Depends: ${misc:Depends}, ${python:Depends}, python-eopayment (>=1.3), python-dateutil Description: Basket and payment system diff --git a/setup.py b/setup.py index f1368dc..2f16fd4 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ setup( ], install_requires=['django>=1.7, <1.8', 'django-jsonfield', - 'eopayment', + 'eopayment>=1.3', 'python-dateutil', ], zip_safe=False,