Hey metaflow peeps. I am trying to import a confi...
# dev-metaflow
c
Hey metaflow peeps. I am trying to import a config.json file in a CI env and when I run
metaflow configure import config.json
I am being hit with an error
Copy code
File "/root/miniconda3/bin/metaflow", line 5, in <module>
    from metaflow.main_cli import main
  File "/root/miniconda3/lib/python3.9/site-packages/metaflow/main_cli.py", line 251, in <module>
    def info(episode):
  File "/root/miniconda3/lib/python3.9/site-packages/click/decorators.py", line 295, in decorator
    _param_memo(f, ArgumentClass(param_decls, **attrs))
  File "/root/miniconda3/lib/python3.9/site-packages/click/core.py", line 2921, in __init__
    super().__init__(param_decls, required=required, **attrs)
TypeError: __init__() got an unexpected keyword argument 'autocompletion'
Is this an error with one of your deps or am I breaking something somewhere ?
1
a
Hmm I can't reproduce this locally, I wonder if there is some quirk with
click
version. What version of Metaflow are you using?
Asking because since 2.5.1 we vendor in
click
to avoid any version issues
c
ah yeah it was another dep that used the newest version of click
what a bugger
thanks for that