From edacd62d563dd7464d61036d87c56ad0d7340858 Mon Sep 17 00:00:00 2001 From: "eder.santana" Date: Tue, 13 Feb 2018 20:06:30 -0800 Subject: [PATCH] Allow recent versions of pysha3 Fixes #6 --- requirements.txt | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index cf60974..9fae1ac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pysha3==1.0b1 +pysha3>=1.0b1 diff --git a/setup.py b/setup.py index 51f2341..57eebea 100755 --- a/setup.py +++ b/setup.py @@ -5,12 +5,12 @@ here = os.path.abspath(os.path.dirname(__file__)) install_requires = [ - "pysha3==1.0b1" + "pysha3>=1.0b1" ] setup( name='merkletools', - version='1.0.2', + version='1.0.3', description='Merkle Tools', classifiers=[ "Intended Audience :: Developers",