Skip to content

Commit 1ebf55f

Browse files
committed
Require Go 1.7 and newer.
That's the minimum version that has context package in standard library, and built-in support for it inside net/http package. Now that Go 1.8 is out, this "current version, plus one back".
1 parent 82629e0 commit 1ebf55f

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

.travis.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
sudo: false
22
language: go
33
go:
4-
- 1.5.4
5-
- 1.6.3
6-
- 1.7
7-
- tip
4+
- 1.7.x
5+
- 1.8.x
6+
- master
87
matrix:
9-
include:
10-
- go: 1.4.3
11-
script:
12-
- go get -t -v ./...
13-
- go test -v -race ./...
148
allow_failures:
15-
- go: tip
9+
- go: master
1610
fast_finish: true
1711
install:
1812
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ go-github is a Go client library for accessing the [GitHub API][].
77
**Build Status:** [![Build Status](https://travis-ci.org/google/go-github.svg?branch=master)](https://travis-ci.org/google/go-github)
88
**Test Coverage:** [![Test Coverage](https://coveralls.io/repos/google/go-github/badge.svg?branch=master)](https://coveralls.io/r/google/go-github?branch=master) ([gocov report](https://drone.io/github.com/google/go-github/files/coverage.html))
99

10-
go-github requires Go version 1.4 or greater.
10+
go-github requires Go version 1.7 or greater.
1111

1212
## Usage ##
1313

0 commit comments

Comments
 (0)