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
easy_install is deprecated, use pip. Cloning with --depth 1 would break git describe, which could be problematic in some cases, see discussion on pip's tracker.
Currently, when fetching requirements via
git
,easy_install
fetches the complete git history. This can take very long for large repos.To fix this, we can use
--depth 1
when doinggit clone
and subsequently do agit fetch --depth 1 origin <rev>
to download a specific revision.I already prepared a branch to fix this, and I am preparing a PR just now (following the PR instructions).
I tested my branch already with a private repo using
python3.6 -m easy_install --user -v git+ssh://[email protected]/private/repo.git@master
python3.6 -m easy_install --user -v git+ssh://[email protected]/private/repo.git
to check the
rev is None
andrev is not None
code-paths.The text was updated successfully, but these errors were encountered: