From d3096465789f1518525bb7dd7ed5377ec0e12efe Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Sat, 12 Dec 2020 19:04:07 -0500 Subject: [PATCH] Ensure Tox builds in a PEP 518 environment --- pyproject.toml | 2 +- tox.ini | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8e559aa..862e4bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools >= 42", "wheel", "setuptools_scm[toml]>=3.4"] +requires = ["setuptools >= 42", "wheel", "setuptools-scm[toml]>=3.4"] build-backend = "setuptools.build_meta" [tool.setuptools_scm] diff --git a/tox.ini b/tox.ini index f8aa887..3d21917 100644 --- a/tox.ini +++ b/tox.ini @@ -1,4 +1,6 @@ [tox] +# Build in an environment which respects PEP 518 +isolated_build = true envlist = lint, type,