Skip to content

Commit 507c6e0

Browse files
author
Marc-Antoine Ruel
committed
go.mod: set 1.17 as minimum
Update github actions too. Ran gofmt.
1 parent 88633f6 commit 507c6e0

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
matrix:
3131
os: [ubuntu-latest, macos-latest, windows-latest]
3232
# Do not forget to bump every 6 months!
33-
gover: ["1.18"]
33+
gover: ["1.19"]
3434
env:
3535
PYTHONDONTWRITEBYTECODE: x
3636
steps:
@@ -101,7 +101,7 @@ jobs:
101101
# Windows.
102102
os: [ubuntu-latest, macos-latest, windows-latest]
103103
# Do not forget to bump every 6 months!
104-
gover: ["1.18"]
104+
gover: ["1.19"]
105105
env:
106106
PYTHONDONTWRITEBYTECODE: x
107107
steps:
@@ -275,7 +275,10 @@ jobs:
275275
fail-fast: false
276276
matrix:
277277
os: [ubuntu-latest]
278-
gover: ['1.13.15']
278+
# https://github.com/golang/go/issues/55078
279+
# golang.org/x/sys/unix broke on Go versions before 1.17. Not worth
280+
# fixing.
281+
gover: ['1.17.13']
279282
env:
280283
PYTHONDONTWRITEBYTECODE: x
281284
steps:
@@ -299,7 +302,7 @@ jobs:
299302
matrix:
300303
os: [ubuntu-latest]
301304
# Do not forget to bump every 6 months!
302-
gover: ["1.18"]
305+
gover: ["1.19"]
303306
permissions:
304307
security-events: write
305308
steps:

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// from https://ftdichip.com/drivers/d2xx-drivers/. See third_party/README.md
1212
// for more details.
1313
//
14-
// Configuration
14+
// # Configuration
1515
//
1616
// See https://periph.io/device/ftdi/ for more details, and how to configure
1717
// the host to be able to use this driver.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module periph.io/x/d2xx
22

3-
go 1.13
3+
go 1.17

0 commit comments

Comments
 (0)