最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Transitive file dependencies break pipenvPipfile.lock - Stack Overflow

programmeradmin3浏览0评论

To avoid running a private a pypi server, we store our wheels on a file server and reference them in Pipfiles using like foo = { file = "\\\\server\\foo-0.1.20-py3-none-any.whl" }

This works, but we now want to create wheels that require other local packages. To this end we have a build script that creates an install_requires list for the setup.py, looking like this:

install_requires=[
...
'foo @ file://server/foo-0.1.20-py3-none-any.whl',
...]

Installing the resulting wheel with pip works fine and installs the required dependencies as expected.

However, trying to list a wheel that contains transitive dependencies in a Pipfile fails: When running pipenv lock, the resulting Pipfile.lock contains all transitive dependencies, but they are all empty:

"foo": {},

Subsequently, pipenv install fails:

ERROR: Could not find a version that satisfies the requirement foo (from versions: none)
ERROR: No matching distribution found for foo
ERROR: Couldn't install package: {}
 Package installation failed...

Am I doing something wrong? Is there any way to get this to work?

发布评论

评论列表(0)

  1. 暂无评论