support for file dependencies with subdirectories #467
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
follow up of #398 to support local zip files in addition to urls
Some pitfalls:
path
) in pyproject.toml. Although there is no added value in having a directory dependency with a subdirectory, it will be valid according to the schema. Internallypath = "folder/sub"
andpath = "folder", subdirectory = "sub"
are not distinguished, path and subdirectory are just joined.poetry add
will probably only be able to add a file dependency with a subdirectory via URI, e.g.file:///tmp/file.zip#subdirectory=sub
because#subdirectory=sub
can't be added to a path.poetry add
because there seems to be no valid URI representation for relative paths (or at least we don't support any).