Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/project1/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools", "unidep"]
requires = ["setuptools", "unidep @ file://localhost/Users/bas.nijholt/Work/unidep"]
build-backend = "setuptools.build_meta"
1 change: 1 addition & 0 deletions unidep/_setuptools_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def _setuptools_finalizer(dist: Distribution) -> None: # pragma: no cover
# PEP 517 says that "All hooks are run with working directory set to the
# root of the source tree".
project_root = Path().resolve()
assert 0, dist.metadata.__dict__
requirements_file = project_root / "requirements.yaml"
if requirements_file.exists() and dist.install_requires:
msg = (
Expand Down