You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like since commit f19131a flow_manager's updated its dependency on click to click>=7.1.2 and then on commit 399c50a it was updated to click==8.0.3 (both sees to be related to black: requirements/dev.in:black>=21.10b0 # 21.x requires click>=7.1.2). However, most of the other napps depends on click==7.1.1:
root@fcfdcf68586e:/src# grep "^click" . -R
./python-openflow/requirements/dev.txt:click==7.1.1 # via pip-tools
./kytos-flow-manager/requirements/dev.txt:click==8.0.3
./kytos-pathfinder/requirements/dev.txt:click==7.1.1 # via pip-tools
./kytos-of-lldp/requirements/dev.txt:click==7.1.1 # via flask, pip-tools
./kytos-topology/requirements/dev.txt:click==7.1.1 # via pip-tools
./kytos-of-core/requirements/dev.txt:click==7.1.1 # via flask, kytos, pip-tools
./kytos-storehouse/requirements/dev.txt:click==7.1.1 # via pip-tools
./kytos/kytos.egg-info/requires.txt:click>=7.1.1
./kytos/requirements/dev.txt:click==7.1.1 # via -r requirements/run.txt, flask, pip-tools
./kytos/requirements/run.txt:click>=7.1.1 # via flask
./kytos-utils/requirements/dev.txt:click==7.1.1
The text was updated successfully, but these errors were encountered:
italovalcy
changed the title
Build is failing due to dependency conflict on click
Build is failing due to dependency conflict on click (kytos in develop mode)
Dec 23, 2021
I forgot to mention that this only happens if I use Kytos, Kytos-utils and python-openflow in develop mode during build (python3 -m pip install -e ...: project in editable mode (i.e. setuptools "develop mode")):
The docker build for
amlight/kytos:latest
(https://github.com/amlight/kytos-docker/blob/master/Dockerfile) is failing due to a dependency conflict onclick
.It looks like since commit f19131a flow_manager's updated its dependency on click to
click>=7.1.2
and then on commit 399c50a it was updated toclick==8.0.3
(both sees to be related to black:requirements/dev.in:black>=21.10b0 # 21.x requires click>=7.1.2
). However, most of the other napps depends onclick==7.1.1
:The text was updated successfully, but these errors were encountered: