aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2020-05-20 22:42:42 +0300
committerSergey Shepelev <temotor@gmail.com>2020-05-20 22:42:42 +0300
commitcb2940a5046c34b6c3568054e8679ae064da4f72 (patch)
treee2ca2520865d3e6064ba17f8696f7e8974d18a0b
parent94f48efe2ffb1caa3fbcba0598e7583df02b832a (diff)
downloadhttplib2-cb2940a5046c34b6c3568054e8679ae064da4f72.tar.gz
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
-rw-r--r--pyproject.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index fa137a3..5f7cbbd 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