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
This pulls in the entire application, including click. A possible solution is to store that in twcli/version.py and import it from there. Both in setup.py and twcli/__init__.py.
A workaround is to first run pip install -r requirements.txt and then pip install -e .
The text was updated successfully, but these errors were encountered:
When running
pip install -e .
in a clean virtualenv it doesn't work because click is not installed.The root cause is importing the main app in the setup file:
workflow-cli/setup.py
Line 6 in 2f04dab
This pulls in the entire application, including click. A possible solution is to store that in
twcli/version.py
and import it from there. Both insetup.py
andtwcli/__init__.py
.A workaround is to first run
pip install -r requirements.txt
and thenpip install -e .
The text was updated successfully, but these errors were encountered: