On new conductor installs I run into this issue:
└─[$] <git:(master)> conductor status
Traceback (most recent call last):
File "/usr/local/bin/conductor", line 7, in <module>
from conductor.cli import conductor
File "/usr/local/lib/python3.6/dist-packages/conductor/cli.py", line 6, in <module>
from funcy import silent
ImportError: cannot import name 'silent'
Either you need to upgrade conductor to be compatible with the new funcy, or you need to lock in the older version 1.10 into requirements.txt
e.g. I did this and conductor worked again:
pip3 install -U funcy==1.10
On new conductor installs I run into this issue:
Either you need to upgrade conductor to be compatible with the new funcy, or you need to lock in the older version 1.10 into requirements.txt
e.g. I did this and conductor worked again: