From 993a044680bf231a639c71edfc8a424391c39c0b Mon Sep 17 00:00:00 2001 From: moson-mo Date: Tue, 14 Mar 2023 11:53:18 +0100 Subject: [PATCH] fix(poetry): use classic installer The "install" module (v0.6.0) which is being used by poetry 1.4.0 has problems installing certain packages. Disable the modern installer for now, until things are fixed. https://github.com/python-poetry/poetry/issues/7572 Signed-off-by: moson-mo --- poetry.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 poetry.toml diff --git a/poetry.toml b/poetry.toml new file mode 100644 index 00000000..8d4747a6 --- /dev/null +++ b/poetry.toml @@ -0,0 +1,5 @@ +# disable the modern installer until python-installer is fixed +# https://github.com/python-poetry/poetry/issues/7572 + +[installer] +modern-installation = false