From 798b7976084748d7966b3fc3e4ae2e9a634c99de Mon Sep 17 00:00:00 2001 From: Michael Hahn Date: Mon, 29 Aug 2016 16:51:53 -0700 Subject: [PATCH] Use compatible release versions for all dependencies --- setup.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/setup.py b/setup.py index ffe03552c..4e700cea8 100644 --- a/setup.py +++ b/setup.py @@ -7,20 +7,20 @@ src_dir = os.path.dirname(__file__) install_requires = [ - "troposphere>=1.8.0", - "boto3>=1.3.1", - "botocore>=1.4.38", - "PyYAML>=3.11", - "awacs>=0.6.0", - "colorama==0.3.7", + "troposphere~=1.8.0", + "boto3~=1.3.1", + "botocore~=1.4.38", + "PyYAML~=3.11", + "awacs~=0.6.0", + "colorama~=0.3.7", ] tests_require = [ - "nose>=1.0", - "mock==1.0.1", - "stacker_blueprints", - "moto", - "testfixtures", + "nose~=1.0", + "mock~=2.0.0", + "stacker_blueprints~=0.6.0", + "moto~=0.4.25", + "testfixtures~=4.10.0", ]