From 1b2aa2fff142cbf51c43531405436cddb90a14c1 Mon Sep 17 00:00:00 2001 From: uivlis Date: Tue, 4 Aug 2020 11:44:41 +0300 Subject: [PATCH 1/3] Reformat with black --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 5074a173..3b6763ea 100644 --- a/setup.py +++ b/setup.py @@ -14,8 +14,5 @@ "Programming Language :: Python", ], packages=setuptools.find_packages() + ["contracts", "migrations"], - install_requires=[ - "hmt-basemodels", - "boto3", - ], + install_requires=["hmt-basemodels", "boto3",], ) From f3f0467a1e2944581f5d452f684288526e1a493f Mon Sep 17 00:00:00 2001 From: uivlis Date: Tue, 4 Aug 2020 11:45:08 +0300 Subject: [PATCH 2/3] Update version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3b6763ea..ee257cff 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setuptools.setup( name="hmt-escrow", - version="0.8.7", + version="0.8.8", author="HUMAN Protocol", description="A python library to launch escrow contracts to the HUMAN network.", url="https://github.com/hCaptcha/hmt-escrow", From 8797a73e8aca15032aa5a75c1873233b8fd72e5e Mon Sep 17 00:00:00 2001 From: uivlis Date: Tue, 4 Aug 2020 12:05:51 +0300 Subject: [PATCH 3/3] Fix typo --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ee257cff..4a464576 100644 --- a/setup.py +++ b/setup.py @@ -14,5 +14,5 @@ "Programming Language :: Python", ], packages=setuptools.find_packages() + ["contracts", "migrations"], - install_requires=["hmt-basemodels", "boto3",], + install_requires=["hmt-basemodels", "boto3"], )