Use poetry-core as PEP 517 build backend (#108)

This change replaces the use of poetry as the build backend in favour
of the leaner poetry-core. This speeds up PEP-517 builds for source
installs, tox environment setup etc.
This commit is contained in:
Arun Babu Neelicattu 2020-10-01 14:45:45 +02:00 committed by GitHub
parent 4630c1cc67
commit bf9412e083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,5 +77,5 @@ commands =
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.0,<2"]
build-backend = "poetry.core.masonry.api"