我刚刚将一个库从一个git存储库迁移到另一个git存储库,现在poetry install
抛出以下错误:
- Installing my-lib (0.1.0 7cdc4ec)
[ModuleOrPackageNotFound]
No file/folder found for package my-lib
ERROR: Service 'app' failed to build: The command '/bin/sh -c poetry $poetry_command' returned a non-zero code: 1
这是我的toml
文件中的库的样子:
my-library = { git = "https://git-repository/my-lib", branch = "python3" }
我确定git凭据设置正确,并且可以克隆/读取存储库和日志中显示的特定提交(以及其他具有类似设置的库)。