From 7004457ddca2f3835bb68ea78e756dca65a1893b Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Sun, 19 Mar 2023 17:48:17 -0400 Subject: [PATCH] Fix problem where poetry won't install debugpy (#88) debugpy is an indirect dependency of this project. When poetry 1.4.1 is used with the default configration, poetry refuses to install debugpy, due to recognizing something wrong with the wheel. This is the same issue (with the same dependency) as: https://github.com/python-poetry/poetry/issues/7686 For now, I'm setting installer.modern-installation to false, per the workaround in: https://github.com/python-poetry/poetry/issues/7686#issuecomment-1475402611 --- poetry.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 poetry.toml diff --git a/poetry.toml b/poetry.toml new file mode 100644 index 00000000..f5f4cd8f --- /dev/null +++ b/poetry.toml @@ -0,0 +1,2 @@ +[installer] +modern-installation = false