ci: bump travis, appveyor and module versions
Also remove redundant Go version build tag.
diff --git a/.travis.yml b/.travis.yml
index 22cd3b1..91ab5ee 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,8 +5,8 @@
# Do not move these lines; they are referred to by README.md.
# Versions of go that are explicitly supported by Gonum, plus Go tip.
go:
+ - 1.15.x
- 1.14.x
- - 1.13.x
- master
os:
diff --git a/appveyor.yml b/appveyor.yml
index 1f0a6db..ca949e5 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,27 +1,24 @@
build: off
+image: Visual Studio 2019
+
+stack: go 1.14
+
clone_folder: c:\gopath\src\gonum.org\v1\gonum
cache:
- '%LocalAppData%\go-build'
+environment:
+ GO111MODULE: 'on'
+
branches:
only:
- master
-environment:
- # Do not move these lines; they are referred to by README.md.
- # Versions of go that are explicitly supported by gonum.
- matrix:
- - GOROOT: 'c:\go113'
- #- GOROOT: 'c:\go114'
- GOPATH: c:\gopath
- GOTOOLDIR: '%GOROOT%\pkg\tool\windows_amd64'
- PATH: '%GOPATH%\bin;%GOROOT%\bin;%PATH%'
-
build_script:
- - "%GOROOT%\\bin\\go version"
- - "%GOROOT%\\bin\\go get -v -t ./..."
+ - go version
+ - go get -v -t ./...
test_script:
- - "%GOROOT%\\bin\\go test ./..."
+ - go test ./...
diff --git a/go.mod b/go.mod
index 71eda6c..4a9b0f3 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module gonum.org/v1/gonum
-go 1.13
+go 1.14
require (
golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2
diff --git a/version.go b/version.go
index cf07f04..f158fd0 100644
--- a/version.go
+++ b/version.go
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build go1.12
-
package gonum
import (