From cb2940a5046c34b6c3568054e8679ae064da4f72 Mon Sep 17 00:00:00 2001 From: Sergey Shepelev Date: Wed, 20 May 2020 22:42:42 +0300 Subject: [PATCH] explicit build-backend workaround pip build isolation bug 6264 pip issue https://github.com/pypa/pip/issues/6264 workaround https://github.com/pypa/setuptools/issues/1694#issuecomment-466010982 fixes https://github.com/httplib2/httplib2/issues/169 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fa137a3d..5f7cbbdd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,6 @@ [build-system] -requires = ["setuptools", "wheel"] +requires = ["setuptools >= 40.8.0", "wheel"] +build-backend = "setuptools.build_meta" [tool.black] line-length = 121