pyproject.toml: only require 'future' for python <3.2

Commit 69cbba8839 ("Only require 'future' for
python <3.2") should be reflected by pyproject.toml as well.
This commit is contained in:
Jonas Witschel 2022-04-05 16:11:47 +02:00
parent 0f4d83078a
commit 0cef432d12

View file

@ -15,7 +15,7 @@ python = "^3.6"
pyOpenSSL = "^19.1.0" pyOpenSSL = "^19.1.0"
webcolors = "^1.11.1" webcolors = "^1.11.1"
atomicwrites = "^1.3.0" atomicwrites = "^1.3.0"
future = "^0.18.2" future = { version = "^0.18.2", python = "<3.2" }
attrs = "^19.3.0" attrs = "^19.3.0"
logbook = "^1.5.3" logbook = "^1.5.3"
pygments = "^2.6.1" pygments = "^2.6.1"