mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
repo: raise min version of git
The git-2.10 series was released in 2016. Since we're moving to require Python 3.6 which was also released in 2016, bumping up the git version seems reasonable. Also we don't really test any git versions close to as old as 1.7.2 which was released in 2010. Change-Id: Ib71b714de6cd0b7dd50d0b300b108a560ee27331 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/253134 Tested-by: Mike Frysinger <vapier@google.com> Reviewed-by: David Pursehouse <dpursehouse@collab.net>
This commit is contained in:
parent
cc960971f4
commit
655aedd7f3
@ -28,7 +28,8 @@ from repo_trace import REPO_TRACE, IsTrace, Trace
|
|||||||
from wrapper import Wrapper
|
from wrapper import Wrapper
|
||||||
|
|
||||||
GIT = 'git'
|
GIT = 'git'
|
||||||
MIN_GIT_VERSION = (1, 5, 4)
|
# Should keep in sync with the "repo" launcher file.
|
||||||
|
MIN_GIT_VERSION = (2, 10, 2)
|
||||||
GIT_DIR = 'GIT_DIR'
|
GIT_DIR = 'GIT_DIR'
|
||||||
|
|
||||||
LAST_GITDIR = None
|
LAST_GITDIR = None
|
||||||
|
2
repo
2
repo
@ -86,7 +86,7 @@ TACbBS+Up3RpfYVfd63c1cDdlru13pQAn3NQy/SN858MkxN+zym86UBgOad2
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
GIT = 'git' # our git command
|
GIT = 'git' # our git command
|
||||||
MIN_GIT_VERSION = (1, 7, 2) # minimum supported git version
|
MIN_GIT_VERSION = (2, 10, 2) # minimum supported git version
|
||||||
repodir = '.repo' # name of repo's private directory
|
repodir = '.repo' # name of repo's private directory
|
||||||
S_repo = 'repo' # special repo repository
|
S_repo = 'repo' # special repo repository
|
||||||
S_manifests = 'manifests' # special manifest repository
|
S_manifests = 'manifests' # special manifest repository
|
||||||
|
@ -35,7 +35,7 @@ class GitCallUnitTest(unittest.TestCase):
|
|||||||
# We don't dive too deep into the values here to avoid having to update
|
# We don't dive too deep into the values here to avoid having to update
|
||||||
# whenever git versions change. We do check relative to this min version
|
# whenever git versions change. We do check relative to this min version
|
||||||
# as this is what `repo` itself requires via MIN_GIT_VERSION.
|
# as this is what `repo` itself requires via MIN_GIT_VERSION.
|
||||||
MIN_GIT_VERSION = (1, 7, 2)
|
MIN_GIT_VERSION = (2, 10, 2)
|
||||||
self.assertTrue(isinstance(ver.major, int))
|
self.assertTrue(isinstance(ver.major, int))
|
||||||
self.assertTrue(isinstance(ver.minor, int))
|
self.assertTrue(isinstance(ver.minor, int))
|
||||||
self.assertTrue(isinstance(ver.micro, int))
|
self.assertTrue(isinstance(ver.micro, int))
|
||||||
|
Loading…
Reference in New Issue
Block a user