rq-dashboard icon indicating copy to clipboard operation
rq-dashboard copied to clipboard

Incompatible with click==8.0.1

Open DuneRaccoon opened this issue 3 years ago • 2 comments

I'm not sure if this issue has been raised, but line 101 in cli.py isn't compatible with the current version of click:

@click.option( '--extra-path', default='.', multiple=True, help='Append specified directories to sys.path')

default must be a list if multiple is True is the error raised.

DuneRaccoon avatar May 27 '21 00:05 DuneRaccoon

#383 #385 trying to fix this very thing, awaiting code review and merge.

gprasanth avatar May 27 '21 10:05 gprasanth

For anyone waiting on the pull request to get merged, you can do pip install click==7.1.2 after installing rq-dashboard to avoid broken deployments in the meanwhile.

gprasanth avatar May 29 '21 07:05 gprasanth

this is now fixed

cjlapao avatar Jun 19 '23 11:06 cjlapao