-
Notifications
You must be signed in to change notification settings - Fork 384
Closed
Description
Hello,
I updated my virtualenv this morning and was faced with the following issue:
❯ inv git.checkout-main
Traceback (most recent call last):
File "/home/arnaud/.virtualenvs/invoke/lib64/python3.11/site-packages/invoke/config.py", line 117, in __getattr__
return self._get(key)
^^^^^^^^^^^^^^
File "/home/arnaud/.virtualenvs/invoke/lib64/python3.11/site-packages/invoke/config.py", line 177, in _get
value = self._config[key]
~~~~~~~~~~~~^^^^^
File "/home/arnaud/.virtualenvs/invoke/lib64/python3.11/site-packages/invoke/config.py", line 168, in __getitem__
return self._get(key)
^^^^^^^^^^^^^^
File "/home/arnaud/.virtualenvs/invoke/lib64/python3.11/site-packages/invoke/config.py", line 177, in _get
value = self._config[key]
~~~~~~~~~~~~^^^^^
KeyError: 'git'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/arnaud/.virtualenvs/invoke/bin/inv", line 8, in <module>
sys.exit(program.run())
^^^^^^^^^^^^^
File "/home/arnaud/.virtualenvs/invoke/lib64/python3.11/site-packages/invoke/program.py", line 398, in run
self.execute()
File "/home/arnaud/.virtualenvs/invoke/lib64/python3.11/site-packages/invoke/program.py", line 583, in execute
executor.execute(*self.tasks)
File "/home/arnaud/.virtualenvs/invoke/lib64/python3.11/site-packages/invoke/executor.py", line 140, in execute
result = call.task(*args, **call.kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/arnaud/.virtualenvs/invoke/lib64/python3.11/site-packages/invoke/tasks.py", line 138, in __call__
result = self.body(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/arnaud/toolbox/work/python/invoke/tasks/git.py", line 53, in checkout_main
for workspace in ctx.git.workspaces:
^^^^^^^
File "/home/arnaud/.virtualenvs/invoke/lib64/python3.11/site-packages/invoke/config.py", line 129, in __getattr__
raise AttributeError(err)
AttributeError: No attribute or config key found for 'git'
Valid keys: ['run', 'runners', 'sudo', 'tasks', 'timeouts']
Valid real attributes: ['cd', 'clear', 'config', 'cwd', 'from_data', 'pop', 'popitem', 'prefix', 'run', 'setdefault', 'sudo', 'update']I have the following packages installed in my venv:
❯ python -m pip list
Package Version
------------------ ---------
astroid 2.15.3
autopep8 2.0.1
certifi 2022.12.7
charset-normalizer 3.1.0
dill 0.3.6
distro 1.8.0
flake8 6.0.0
idna 3.4
invoke 2.1.1
isort 5.12.0
lazy-object-proxy 1.9.0
markdown-it-py 2.2.0
mccabe 0.7.0
mdurl 0.1.2
pip 23.1.2
platformdirs 2.6.2
pycodestyle 2.10.0
pyflakes 3.0.1
Pygments 2.14.0
pylint 2.17.2
requests 2.30.0
rich 13.3.5
setuptools 62.6.0
tabulate 0.9.0
tomlkit 0.11.6
urllib3 1.26.15
wheel 0.40.0
wrapt 1.14.1I have the following config file in my home directory:
❯ cat ~/.invoke.yaml
# BEGIN ANSIBLE MANAGED BLOCK
tasks:
search_root: /home/arnaud/toolbox/work/python/invoke
# END ANSIBLE MANAGED BLOCKand in the /home/arnaud/toolbox/work/python/invoke I have
❯ ls -l /home/arnaud/toolbox/work/python/invoke
total 12
-rw-r--r-- 1 arnaud arnaud 4837 Apr 27 15:04 invoke.yaml
drwxr-xr-x 2 arnaud arnaud 4096 Apr 27 15:31 taskswith the following in my invoke.yaml file:
git:
workspaces:
- /home/arnaud/git/CI
- /home/arnaud/git/ProductsThis is working without any issue if I downgrade invoke to invoke<2.1.0 (2.0.1).
I can provide additional information if needed, just let me know.
Metadata
Metadata
Assignees
Labels
No labels