-
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
Add support for url dependencies #1260
Conversation
15737fb
to
53a3cae
Compare
I tried to install spacy language model like this
but didn't work. Doing |
Just tried this and doesnt work on tar/zip balls.
doesn't work because of
Maybe the version check can be skipped in this case or if you must know it we can come up with something like :
This happends if you fork someones repo on Github, do stuff but the original developer is not responding to your merge request. Then you need to add your repo as dependency which doesn't have PyPI link nor official version number. |
Hello @im-n1,
Could you please submit an issue? |
I just did. Feel free to do your internal issue management. Bye. |
Any news on this? |
Hi @sdispater , I have tried the following in pyproject.toml [tool.poetry.dependencies.tensorflow]
version = "~2.3"
url = "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.3.2.tar.gz" got this error
when I tried this: [tool.poetry.dependencies]
tensorflow= { url = "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.3.2.tar.gz" } got this error
|
I got the same error as @PranitModak ( |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Pull Request Check List
This PR adds support for URL dependencies.
Adding a URL dependency to the current project can be done in two ways: via the
add
command or by modifying thepyproject.toml
file directly.