-
-
Notifications
You must be signed in to change notification settings - Fork 611
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
Simple workflow for overriding "dependency of dependency" versions? #1111
Comments
As a small update, I tried to modify the Thanks in advance for any help from the |
Solution Specifying the
Thanks @McSinyx for the hint on the other issue! |
The
|
Thanks @atugushev – that works as well I thought that Since we're already talking... Is there any difference between those two syntaxes? Should I prefer one in certain situations? |
I can think of one reason to prefer It propagates the package name to the generated
And we've just established that the package name is not always inferred from the VCS checkout |
1 similar comment
This comment has been minimized.
This comment has been minimized.
Pip recommends
|
We have a bug btw with this format in |
Ah yes! That is exactly what my comment #1111 (comment) referred to. Well, bug or not bug, it's a practical reason to stick with Thanks @atugushev! |
I am having issues using a private URL with
the generated
that is with the egg-fragment removed. This is rejected by |
What's the problem this feature will solve?
Sometimes I need to use an unreleased version of a Python package, to get a fix for an issue that's blocking me.
While it's pretty straightforward with direct dependencies (thanks to vsc support), it's not as easy for fixes in the dependencies of my dependencies.
Describe the solution you'd like
Well, I don't know! Asking for help - maybe it's already possible.
I can tell you what doesn't work.
In this case
aiogremlin
is a dependency ofgoblin
:https://github.com/goblin-ogm/goblin/blob/e45c32956eb93be8fa55eba15a3a08919626528b/setup.py#L31-L33
I would like to use an unreleased VCS checkout of
aiogremlin
:I was hoping that explicitly specifying a version of
aiogremlin
will result in just a single entry for this package inrequirements.txt
, but it wasn't the case:Alternative Solutions
I could modify the
goblin
package too, but this sounds like a lot of boilerplate work...The text was updated successfully, but these errors were encountered: