mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
12f6dc49e9
Debian 7 Wheezy went EOL in May 2018. We don't need to carry support for that anymore as there have been 5 major releases since. Ubuntu Precise went EOL in Apr 2019 (including the extended support phase). That means we can bump the required git version from 1.7.9 to 1.9.1. git-1.7.9 was released in 2012 while git-1.9.1 was released in 2014. So that shouldn't be a problem either. And we've been warning people using git versions older than 1.9.1 for 3 years now that they need to upgrade. Change-Id: Ifbbf72f51010b0a944c2785895d1b605333f9146 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/415637 Reviewed-by: Josip Sokcevic <sokcevic@google.com> Tested-by: Mike Frysinger <vapier@google.com> Commit-Queue: Mike Frysinger <vapier@google.com>
60 lines
2.2 KiB
JSON
60 lines
2.2 KiB
JSON
# This file declares various requirements for this version of repo. The
|
|
# launcher script will load it and check the constraints before trying to run
|
|
# us. This avoids issues of the launcher using an old version of Python (e.g.
|
|
# 3.5) while the codebase has moved on to requiring something much newer (e.g.
|
|
# 3.8). If the launcher tried to import us, it would fail with syntax errors.
|
|
|
|
# This is a JSON file with line-level comments allowed.
|
|
|
|
# Always keep backwards compatibility in mine. The launcher script is robust
|
|
# against missing values, but when a field is renamed/removed, it means older
|
|
# versions of the launcher script won't be able to enforce the constraint.
|
|
|
|
# When requiring versions, always use lists as they are easy to parse & compare
|
|
# in Python. Strings would require futher processing to turn into a list.
|
|
|
|
# Version constraints should be expressed in pairs: soft & hard. Soft versions
|
|
# are when we start warning users that their software too old and we're planning
|
|
# on dropping support for it, so they need to start planning system upgrades.
|
|
# Hard versions are when we refuse to work the tool. Users will be shown an
|
|
# error message before we abort entirely.
|
|
|
|
# When deciding whether to upgrade a version requirement, check out the distro
|
|
# lists to see who will be impacted:
|
|
# https://gerrit.googlesource.com/git-repo/+/HEAD/docs/release-process.md#Project-References
|
|
|
|
{
|
|
# The repo launcher itself. This allows us to force people to upgrade as some
|
|
# ignore the warnings about it being out of date, or install ancient versions
|
|
# to start with for whatever reason.
|
|
#
|
|
# NB: Repo launchers started checking this file with repo-2.12, so listing
|
|
# versions older than that won't make a difference.
|
|
"repo": {
|
|
"hard": [2, 11],
|
|
"soft": [2, 11]
|
|
},
|
|
|
|
# Supported Python versions.
|
|
#
|
|
# python-3.6 is in Ubuntu Bionic.
|
|
# python-3.7 is in Debian Buster.
|
|
"python": {
|
|
"hard": [3, 6],
|
|
"soft": [3, 6]
|
|
},
|
|
|
|
# Supported git versions.
|
|
#
|
|
# git-1.9.1 is in Ubuntu Trusty.
|
|
# git-2.1.4 is in Debian Jessie.
|
|
# git-2.7.4 is in Ubuntu Xenial.
|
|
# git-2.11.0 is in Debian Stretch.
|
|
# git-2.17.0 is in Ubuntu Bionic.
|
|
# git-2.20.1 is in Debian Buster.
|
|
"git": {
|
|
"hard": [1, 9, 1],
|
|
"soft": [2, 7, 4]
|
|
}
|
|
}
|