Replies: 2 comments 2 replies
-
This is on an ubuntu-22.04 WSL2 VM with cpython 3.10.11, if that helps. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Does this work inside of a Docker image? If not, perhaps you could send me steps to reproduce. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey folks, I'm looking at switching a project to using pyproject.toml and so on from its current setup with nice old setup.py. The critical feature for me is that editable installs of the package work nicely when done with
pip install -e
.To test this, I
hatch new hatch-editables
(the venv here is because I installed hatch there):pip install -e ./hatch-editables
:Here is the configuration:
This seems to be because the pth is empty:
And oddly enough the
direct-url.json
has a path that doesn't point to the package:Beta Was this translation helpful? Give feedback.
All reactions