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
I have some build scripts which uses pip to install a package from a git repository. The build script installs to a prefix (kind of a virtualenv) and repository's content are used after the install to pick up additional files. With pip 6.x series the following lines does the trick:
The behavior of pip 6.x is right: It clones the repository specified by $FULL_REPOSITORY, run the setup.py install and then leave the repository in $BUILD_DIR.
The behavior of pip 7.x, which I see as misleading, is that it removes the repository after running setup.py install, no matter if --no-clean is used or not.
The text was updated successfully, but these errors were encountered:
I have some build scripts which uses pip to install a package from a git repository. The build script installs to a prefix (kind of a virtualenv) and repository's content are used after the install to pick up additional files. With pip 6.x series the following lines does the trick:
The behavior of pip 6.x is right: It clones the repository specified by
$FULL_REPOSITORY
, run thesetup.py install
and then leave the repository in$BUILD_DIR
.The behavior of pip 7.x, which I see as misleading, is that it removes the repository after running
setup.py install
, no matter if--no-clean
is used or not.The text was updated successfully, but these errors were encountered: