From bcc79a58fd55c296cb07a73d89e459c23c9dfc9a Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Sat, 6 Jun 2020 10:35:39 -0700 Subject: [PATCH] build/pkgs/entrypoints/spkg-install.in: Remove pyproject.toml so that setup.py is used --- build/pkgs/entrypoints/spkg-install.in | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/build/pkgs/entrypoints/spkg-install.in b/build/pkgs/entrypoints/spkg-install.in index deba1bb42bb..cb4ba894442 100644 --- a/build/pkgs/entrypoints/spkg-install.in +++ b/build/pkgs/entrypoints/spkg-install.in @@ -1 +1,8 @@ -cd src && sdh_pip_install . +cd src + +# Make sure that modern pip uses the generated setup.py +# that is distributed with the PyPI tarball, +# so we do not have to have flit. Trac #29803. +rm -f pyproject.toml + +sdh_pip_install .