Skip to content

Commit

Permalink
Merge pull request #347 from panjf2000/minimum-go1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
panjf2000 authored Dec 11, 2024
2 parents 4acc969 + df029e6 commit d421891
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 19 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,22 +55,8 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [1.13, 1.23]
go: [1.16, 1.23]
os: [ubuntu-latest, macos-latest, windows-latest]
include:
# TODO(panjf2000): There is an uncanny issue arising when downloading
# go modules on macOS 13 for Go1.13. So we use macOS 12 for now,
# but try to figure it out and use macOS once it's resolved.
# https://github.com/panjf2000/ants/actions/runs/9546726268/job/26310385582
- go: 1.13
os: macos-12
exclude:
# Starting macOS 14 GitHub Actions runners are arm-based,
# but Go didn't support arm64 until 1.16. Thus, we must
# replace the macOS 14 runner with macOS 12 runner for Go 1.13.
# Ref: https://github.com/actions/runner-images/issues/9741
- go: 1.13
os: macos-latest
name: Go ${{ matrix.go }} @ ${{ matrix.os }}
runs-on: ${{ matrix.os}}
steps:
Expand Down
4 changes: 1 addition & 3 deletions ants.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,7 @@ var (
return 1
}()

// log.Lmsgprefix is not available in go1.13, just make an identical value for it.
logLmsgprefix = 64
defaultLogger = Logger(log.New(os.Stderr, "[ants]: ", log.LstdFlags|logLmsgprefix|log.Lmicroseconds))
defaultLogger = Logger(log.New(os.Stderr, "[ants]: ", log.LstdFlags|log.Lmsgprefix|log.Lmicroseconds))

// Init an instance pool when importing ants.
defaultAntsPool, _ = NewPool(DefaultAntsPoolSize)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/panjf2000/ants/v2

go 1.13
go 1.16

require (
github.com/stretchr/testify v1.8.2
Expand Down

0 comments on commit d421891

Please sign in to comment.