From 758006f2ff8176d43c35911115cfc1fa24520492 Mon Sep 17 00:00:00 2001 From: Stanislav Levin Date: Mon, 15 May 2023 15:27:21 +0300 Subject: [PATCH] deps: Add missing runtime dependency on pip According to docs https://flit.pypa.io/en/stable/cmdline.html#flit-install: > Flit calls pip to do the installation. but pip was not specified as runtime dependency of flit. Fixes: https://github.com/pypa/flit/issues/646 Signed-off-by: Stanislav Levin --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 5292a410..7f80ff55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ dependencies = [ "requests", "docutils", "tomli-w", + "pip", ] requires-python = ">=3.6" readme = "README.rst"