Skip to content

Commit 8bba6dc

Browse files
feat: drop [email protected] support (#571)
1 parent 1469384 commit 8bba6dc

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ env:
1111

1212
matrix:
1313
include: # WARNING remove -cpu=* with TEST_WITH_REAL_API=1
14-
- go: "1.10"
15-
env: TEST_WITH_REAL_API=0 GOTESTFLAGS="-race -cpu=1,2,4"
16-
- go: "1.10"
17-
env: TEST_WITH_REAL_API=1
1814
- go: "1.11"
1915
env: TEST_WITH_REAL_API=0 GOTESTFLAGS="-race -cpu=1,2,4"
2016
- go: "1.11"
@@ -34,7 +30,7 @@ before_install:
3430
- go get -u github.com/axw/gocov/gocov
3531
- go get -u github.com/mattn/goveralls
3632
- go get golang.org/x/tools/cmd/cover
37-
- GO15VENDOREXPERIMENT=1 go get moul.io/anonuuid/cmd/anonuuid
33+
- go get -u moul.io/anonuuid/cmd/anonuuid
3834

3935

4036
script:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ $ docker run -it --rm --volume=$HOME/.scwrc:/.scwrc scaleway/cli ps
142142

143143
### Manual build
144144

145-
1. [Install go](https://golang.org/doc/install) a version `>= 1.10`
145+
1. [Install go](https://golang.org/doc/install) a version `>= 1.11`
146146
2. Ensure you have `$GOPATH` and `$PATH` well configured, something like:
147147
* `export GOPATH=$HOME/go`
148148
* `export PATH=$PATH:$GOPATH/bin`

cmd/scw/main_unsupported.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// +build !go1.10
1+
// +build !go1.11
22

33
package main
44

55
func error() {
6-
`Bad go version, please install a version greater than or equal to 1.10`
6+
`Bad go version, please install a version greater than or equal to 1.11`
77
}

goversion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// +build go1.10
1+
// +build go1.11
22

33
package goversion

goversion_unsupported.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// +build !go1.10
1+
// +build !go1.11
22

33
package goversion
44

55
func error() {
6-
`Bad go version, please install a version greater than or equal to 1.10`
6+
`Bad go version, please install a version greater than or equal to 1.11`
77
}

0 commit comments

Comments
 (0)