From e41fba96f1bfb94f079ba5b304ce5331cec39909 Mon Sep 17 00:00:00 2001 From: Bruno Wagner Date: Thu, 16 Oct 2014 13:56:11 +0200 Subject: Pinned versions of all packages, so we can reliably run the upgrade test, also fixed the error we're having on the upgrade test --- service/setup.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'service/setup.py') diff --git a/service/setup.py b/service/setup.py index 994e807a..00f5b8d1 100644 --- a/service/setup.py +++ b/service/setup.py @@ -19,6 +19,10 @@ import sys if 'develop' in sys.argv: sys.argv.append('--always-unzip') +# next line is a fix to this error that occurs with nose > 1.1.2 and the debian +# python: http://bugs.python.org/issue15881#msg170215 +import multiprocessing + from setuptools import setup from collections import defaultdict import os @@ -69,9 +73,9 @@ setup(name='pixelated-user-agent', packages=['pixelated', 'pixelated.adapter', 'pixelated.bitmask_libraries', 'pixelated.config', 'pixelated.certificates', 'pixelated.support', 'pixelated.controllers'], test_suite='nose.collector', install_requires=[ - 'Twisted', - 'flask', - 'requests', + 'Twisted==14.0.2', + 'flask==0.10.1', + 'requests==2.4.3', 'srp==1.0.5', 'dirspec==13.10', 'u1db==13.09', @@ -80,8 +84,8 @@ setup(name='pixelated-user-agent', 'leap.soledad.client==0.5.2', 'leap.mail==0.3.9-1-gc1f9c92', 'whoosh==2.6.0', - 'gunicorn', - 'crochet' + 'gunicorn==19.1.1', + 'crochet==1.3.0' ], entry_points={ 'console_scripts': [ -- cgit v1.2.3