Merge pull request #323 from diabonas/pyproject-future

pyproject.toml: only require 'future' for python <3.2
This commit is contained in:
Damir Jelić 2022-05-04 20:03:45 +02:00 committed by GitHub
commit c2d2a52283
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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"