From 0cef432d12e18e5d3b5c0f3e839c263a01321db6 Mon Sep 17 00:00:00 2001 From: Jonas Witschel Date: Tue, 5 Apr 2022 16:11:47 +0200 Subject: [PATCH] pyproject.toml: only require 'future' for python <3.2 Commit 69cbba8839ad68420d55bd56833eb3e970ee6311 ("Only require 'future' for python <3.2") should be reflected by pyproject.toml as well. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a9aff03..709adf1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ python = "^3.6" pyOpenSSL = "^19.1.0" webcolors = "^1.11.1" atomicwrites = "^1.3.0" -future = "^0.18.2" +future = { version = "^0.18.2", python = "<3.2" } attrs = "^19.3.0" logbook = "^1.5.3" pygments = "^2.6.1"