From c3aa6c029d67a9612ebabf84784a6571fa603e4c Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 28 Oct 2014 22:12:18 +0100 Subject: Fix the dependencies in the setup.py --- .travis.yml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3152dfa0..2c27b4a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,5 @@ python: - "3.4" install: - pip install -r requirements.txt - - python setup.py -q build install + - python setup.py build script: make test diff --git a/setup.py b/setup.py index efd914b0..e9e8e4a7 100755 --- a/setup.py +++ b/setup.py @@ -63,8 +63,8 @@ setup(name="poezio", entry_points={ 'console_scripts': [ 'poezio = poezio:main' ] }, data_files = [('share/man/man1/', ['data/poezio.1'])], - install_requires = ['sleekxmpp==1.2.4', - 'dnspython3>=1.11.1'], + install_requires = ['sleekxmpp>=1.2.4', + 'dnspython3>=1.10.0'], extras_require = {'OTR plugin': 'python-potr>=1.0', 'Screen autoaway plugin': 'pyinotify==0.9.4'} ) -- cgit v1.2.3