-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: gracefully handle wheels with no dependencies (#21)
Skip wheels with no `Requires-Dist` lines, rather than trying and failing to freeze them.
- Loading branch information
1 parent
87ded2c
commit 92efa51
Showing
6 changed files
with
229 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Binary file added
BIN
+1.03 KB
tests/fixtures/nested_packages/others/app_no_deps/dist/app_no_deps-0.2-py3-none-any.whl
Binary file not shown.
144 changes: 144 additions & 0 deletions
144
tests/fixtures/nested_packages/others/app_no_deps/poetry.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
tests/fixtures/nested_packages/others/app_no_deps/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[tool.poetry] | ||
name = "app_no_deps" | ||
description = "lorem ipsum" | ||
version = "0.2" | ||
authors = ["SideCars"] | ||
license = "Apache-2.0" | ||
packages = [ | ||
{ include = "app_no_deps" }] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
app_b = {path = "../..", develop = true} | ||
|
||
[build-system] | ||
requires = ["poetry>=0.12", "setuptools"] | ||
build-backend = "poetry.masonry.api" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters