Can I use pip to set the last tag?

You can use pip to set a specific tag:

pip install -e git+ssh://git@github.com/{usr}/{repo}.git@{tag}#egg={egg}

However, I can’t find a way to point to the latest version (which will be releases/latest), and not just to the HEAD wizard. Is it possible?

One limitation, it must use ssh.

+4
source share

Source: https://habr.com/ru/post/1616214/


All Articles