From a92497aef0b9c0a5e4cd770bb5fcdedf712d2a7a Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Sun, 5 May 2019 13:04:04 +0100 Subject: [PATCH] travis: Increase minimum supported version to 1.9 As of a29dc8fd (2019-04-26), golang.org/x/crypto requires math/bits. math/bits was introduced in Go 1.9, so we can no longer build from head using 1.7. Building using Debian's packaged dependencies should work just fine, but since we want Travis to build from head, this commit updates the minimum supported version to 1.9. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1381ac5..95a2aec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,9 @@ dist: trusty sudo: false go: - - 1.7 # Debian stable. + # Normally we'd want to support the version in Debian stable, but + # golang.org/x/crypto requires math/bits which appeared in 1.9. + - 1.9 - stable - master