From 38a6271fea7896291bdb25b8e3061c7726401691 Mon Sep 17 00:00:00 2001 From: Oliver Ainsworth Date: Sat, 18 May 2019 18:51:38 +0100 Subject: [PATCH] chore(deps): add missing 'future' requirement (#173) Dependency added in #172 to fix #170. --- requirements.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index be9f3f1..d172306 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ mando>=0.6,<0.7 colorama>=0.4,<0.5 flake8_polyfill +future diff --git a/setup.py b/setup.py index 9632bdd..91a08d4 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ 'mando>=0.6,<0.7', 'colorama>=0.4,<0.5', 'flake8-polyfill', + 'future', ], entry_points={ 'console_scripts': ['radon = radon:main'],