-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dependencies of local dependencies are not installed #5300
Comments
Actually, any time a new venv is created (after every restart/whatever) there's a need to install the 2 packages separately. What do you suggest? |
Expanding on this - Even installing both packages separately doesn't solve the issue. Thoughts? |
@GerevSec can you try the following from outside the project virtual environment? pip install build
python -c "import build.util; print(build.util.project_wheel_metadata('../../libraries/python/pylib'))" This should show the wheel metadata generated for the project Additionally, using Another note; it could also be that |
Hey @abn, Thanks for the response. So running it outside of the venv, I'm getting an error with the venv - Traceback (most recent call last): am I missing something here? |
Hmm, unsure. Looks like the issue is that the See also pypa/virtualenv#2319 (comment). |
This might warrant some additional investigation. |
Hello @GerevSec, you haven't come back to this issue for a long while. So I assume this is solved in the meantime and I can close this ticket. Feel free to leave a comment if you disagree. fin swimmer |
I ran into this issue recently and resolved it by removing the |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
I am on the latest Poetry version.
I have searched the issues of this repo and believe that this is not a duplicate.
If an exception occurs when executing a command, I executed it again in debug mode (
-vvv
option).Windows 11 WSL2 ubuntu 20.04 python 3.10
master (6485bc2)
pyproject.toml
Issue
Hey guys,
After using the current master branch in order to access the 1.2 preview features, I notice that when installing a package (in this case, "X") using a local package "pylib", the dependencies of the local package are not installed.
In this case, pylib uses grpcio-tools (with protobuf) to create some python grpc files that use google.protobuf.
X uses pylib, so it needs grpcio-tools/protobuf installed.
however, installing X after a fresh clone does not install protobuf or grpcio-tools.
How do you suggest to proceed?
Cheers,
Ayal
The text was updated successfully, but these errors were encountered: