Merge pull request #8620 from dhalbert/git-partial-clone-submodules-version

partial clone for submodules added in git 2.36.0
This commit is contained in:
Jeff Epler 2023-11-16 08:35:08 -06:00 committed by GitHub
commit 4a311bd01c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ def _git_version():
clone_supports_filter = (
False if "NO_USE_CLONE_FILTER" in os.environ else _git_version() >= (2, 27, 0)
False if "NO_USE_CLONE_FILTER" in os.environ else _git_version() >= (2, 36, 0)
)
if clone_supports_filter: