From 68da30bfa28d0ebdb9024f71c63b13f76ffa8c2d Mon Sep 17 00:00:00 2001 From: Robert Valta Date: Thu, 7 May 2020 15:28:24 +0300 Subject: [PATCH] Add boto3 to required packages, bump to 0.7.16 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f82e6652..d9a0a1e4 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setuptools.setup( name="hmt-escrow", - version="0.7.15", + version="0.7.16", author="HUMAN Protocol", description= "A python library to launch escrow contracts to the HUMAN network.", @@ -16,5 +16,5 @@ packages=setuptools.find_packages(), install_requires=[ "ipfshttpclient==0.4.13.2", "py-evm==0.2.0a37", "py-solc==3.2.0", - "web3==4.8.3", "hmt-basemodels" + "web3==4.8.3", "hmt-basemodels", "boto3==1.13.3" ])