From a7d58e5f1a08e51a361cf5776591e7ed0d39f704 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Fri, 18 Oct 2019 17:08:26 -0400 Subject: [PATCH] don't do go get -u in travis, do go mod download instead --- .travis.yml | 2 +- testdata/pytables/tables.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f256b43..c21857b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,7 @@ before_script: - ./testdata/dectest/generate.bash - ./testdata/pytables/generate.bash - GO_FILES=$(find . -type f -iname '*.go') - - go get -u -t ./... + - go mod download script: - test -z $(gofmt -s -l $GO_FILES) diff --git a/testdata/pytables/tables.py b/testdata/pytables/tables.py index 20f47b1..e7eff6c 100755 --- a/testdata/pytables/tables.py +++ b/testdata/pytables/tables.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.6 +#!/usr/bin/env python3 from decimal import * import gzip