You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we use self-hosts runner and run CI in vesoft/nebula-dev containers.
by default, github runner would mount a temp folder for ${HOME}, i.e. /github/home
we use pip3 install --user in ci, if the python package versions are in the same, it won't update packages.
so we should use pip3 install --user --upgrade.
simply repeat the issue:
mkdir test && cd test
docker run -it --rm -v $PWD:/root/ vesoft/nebula-dev:centos7 bash
pip3 install nebula2-python --user
exit
docker run -it --rm -v $PWD:/root/ vesoft/nebula-dev:centos7 bash
git clone --branch param-var https://github.com/czpmango/nebula-python
cd nebula-python
pip3 install --user . -i https://mirrors.aliyun.com/pypi/simple/
cd .. && rm -rf nebula-python
python3 -c 'from nebula2.gclient.net import Session;print(dir(Session))'
the package is not updated.
The text was updated successfully, but these errors were encountered:
we use self-hosts runner and run CI in vesoft/nebula-dev containers.
by default, github runner would mount a temp folder for ${HOME}, i.e. /github/home
we use
pip3 install --user
in ci, if the python package versions are in the same, it won't update packages.so we should use
pip3 install --user --upgrade
.simply repeat the issue:
the package is not updated.
The text was updated successfully, but these errors were encountered: