From 7cb03470318677ebc39e6728d05b7ab6b26728ad Mon Sep 17 00:00:00 2001 From: Carl Wilson Date: Thu, 22 Dec 2022 10:22:56 +0000 Subject: [PATCH] REL: Fido v1.6.1 - fixed issue with dependencies. --- fido/__init__.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/fido/__init__.py b/fido/__init__.py index 523f17f..a846cfc 100644 --- a/fido/__init__.py +++ b/fido/__init__.py @@ -14,7 +14,7 @@ from six.moves import input as rinput -__version__ = '1.6.0' +__version__ = '1.6.1' CONFIG_DIR = join(abspath(dirname(__file__)), 'conf') diff --git a/setup.py b/setup.py index f5fa790..16da4b7 100755 --- a/setup.py +++ b/setup.py @@ -30,6 +30,7 @@ def find_version(*file_paths): 'six >= 1.10.0, < 2', 'win-unicode-console >= 0.5; python_version == "2.7" and platform_system == "Windows"', 'importlib-resources', + 'requests' ]