From 3a3f3695911c4cc21ce365d1de0d5cc238d60394 Mon Sep 17 00:00:00 2001 From: Will Shanks Date: Sat, 24 Dec 2022 09:06:24 -0500 Subject: [PATCH] Drop future dependency for Python 3 future is only used to provide `builtins` imports in Python 2. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1fdce805..ffab7201 100755 --- a/setup.py +++ b/setup.py @@ -337,7 +337,7 @@ 'Source': 'https://github.com/lebigot/uncertainties' }, - install_requires=['future'], + install_requires=["future; python_version < '3.1'"], tests_require=['nose', 'numpy'],