【发布时间】:2022-01-24 03:47:36
【问题描述】:
上下文
在我的 Django 项目(基于 Django cookiecutter)中,我使用 django-graphql-auth,它依赖于 django-graphql-jwt。
我 fork django-graphql-jwt 进行一些更改,然后还 fork django-graphql-auth 以更新其对我的 django-graphql-jwt fork 的依赖:
# django-graphql-auth setup.py
install_requires=[
"django-graphql-jwt @ git+<git_url>#egg=django_graphql_jwt",
...,
]
这与pip install -r requirements.txt 一样正常工作。
问题
在 Docker 中,当我在一个阶段构建轮子并在另一个阶段安装它们时,django-graphql-jwt git 被拉两次(在构建和安装时)并发生冲突。
Cookiecutter Django 提供了一个 Dockerfile (found here),它分为多个阶段:
- 为所有依赖项构建轮子。这是克隆和构建 -auth 和 -jwt git 的时候。
> pip wheel --wheel-dir /wheels/ -r local.txt
- 从前一阶段复制并安装轮子。在这里,应该使用内置的轮子(不要克隆 git)。
> pip install --no-cache-dir --no-index --find-links=/wheels/ /wheels/*
...
Processing /wheels/django_graphql_auth-0.3.16-py2.py3-none-any.whl
Processing /wheels/django_graphql_jwt-0.3.4-py3-none-any.whl
...
Collecting django-graphql-jwt@ git+<git url>
Cloning ...
...
ERROR: Cannot install django-graphql-auth==0.3.16 and django-graphql-jwt 0.3.4 (from /wheels/django_graphql_jwt-0.3.4-py3-none-any.whl) because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested django-graphql-jwt 0.3.4 (from /wheels/django_graphql_jwt-0.3.4-py3-none-any.whl)
django-graphql-auth 0.3.16 depends on django-graphql-jwt (unavailable)
您可以看到现有的 -jwt 轮子已被处理,但之后,它的 git 被克隆。这两个似乎导致了冲突。如果我在 setup.py (django-graphql-jwt>=0.3.4) 中添加一个版本,它在构建步骤中已经失败。
如何将 -auth 依赖项与已构建的 -jwt 轮子相匹配?
【问题讨论】:
标签: python git docker pip python-wheel