Dir-file conflict

```
virtualenv --clear -p 3.10 .venv -q
cargo run --bin puffin -q -- pip-sync scripts/dir_file_conflict/requirements.txt
```
This commit is contained in:
konstin 2023-12-27 21:11:00 +01:00
parent 0ebff943e4
commit 42e6c091df
20 changed files with 38 additions and 0 deletions

Binary file not shown.

View file

@ -0,0 +1,18 @@
[tool.poetry]
name = "has-dir"
version = "0.1.0"
description = ""
authors = ["konstin <konstin@mailbox.org>"]
readme = "README.md"
packages = [
{ include = "requirements" },
]
include = ["conflicting2"]
[tool.poetry.dependencies]
python = "^3.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

Binary file not shown.

View file

@ -0,0 +1,18 @@
[tool.poetry]
name = "has-file"
version = "0.1.0"
description = ""
authors = ["konstin <konstin@mailbox.org>"]
readme = "README.md"
packages = [
{ include = "requirements" },
]
include = ["conflicting2"]
[tool.poetry.dependencies]
python = "^3.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View file

@ -0,0 +1,2 @@
has_dir @ file://${PWD}/scripts/dir_file_conflict/has_dir/dist/has_dir-0.1.0-py3-none-any.whl
has_file @ file://${PWD}/scripts/dir_file_conflict/has_file/dist/has_file-0.1.0-py3-none-any.whl