Skip to content

Commit

Permalink
Fix problem where poetry won't install debugpy
Browse files Browse the repository at this point in the history
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:

python-poetry/poetry#7686

For now, I'm setting installer.modern-installation to false, per
the workaround in:

python-poetry/poetry#7686 (comment)
  • Loading branch information
EliahKagan committed Mar 19, 2023
1 parent ba81795 commit 1fd2b63
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[installer]
modern-installation = false

0 comments on commit 1fd2b63

Please sign in to comment.