Python packages (benchbot_addons, benchbot_api, & benchbot_eval) are installed by:
Getting the latest version of the repository
Installing in editable mode via pip install -e .
This means when we update the packages in a future benchbot_install, the files the pip package points to update, but the actual versions don't change in pip list | grep benchbot.
There is no actual effect from this bug, but it should be fixed by swapping the commands to pip install --upgrade -e . if possible.
Python packages (
benchbot_addons
,benchbot_api
, &benchbot_eval
) are installed by:pip install -e .
This means when we update the packages in a future
benchbot_install
, the files thepip
package points to update, but the actual versions don't change inpip list | grep benchbot
.There is no actual effect from this bug, but it should be fixed by swapping the commands to
pip install --upgrade -e .
if possible.