Skip to content

Commit a7d58e5

Browse files
author
Brian Picciano
committed
don't do go get -u in travis, do go mod download instead
1 parent 8c1989d commit a7d58e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ before_script:
3030
- ./testdata/dectest/generate.bash
3131
- ./testdata/pytables/generate.bash
3232
- GO_FILES=$(find . -type f -iname '*.go')
33-
- go get -u -t ./...
33+
- go mod download
3434

3535
script:
3636
- test -z $(gofmt -s -l $GO_FILES)

testdata/pytables/tables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3.6
1+
#!/usr/bin/env python3
22

33
from decimal import *
44
import gzip

0 commit comments

Comments
 (0)