Skip to content

Commit defb4c9

Browse files
committed
Remove gotest
1 parent 5597a72 commit defb4c9

File tree

7 files changed

+4
-9
lines changed

7 files changed

+4
-9
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.4.45
1+
9.4.46

c/doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = "Binsearch"
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 9.4.45
35+
PROJECT_NUMBER = 9.4.46
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ toolchain go1.25.0
66

77
require (
88
github.com/jstemmer/go-junit-report/v2 v2.1.0
9-
github.com/rakyll/gotest v0.0.6
109
github.com/stretchr/testify v1.10.0
1110
)
1211

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ github.com/mattn/go-isatty v0.0.11 h1:FxPOTFNqGkuDUGi3H/qkUbQO4ZiBa2brKq5r0l8TGe
1313
github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE=
1414
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1515
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
16-
github.com/rakyll/gotest v0.0.6 h1:hBTqkO3jiuwYW/M9gL4bu0oTYcm8J6knQAAPUsJsz1I=
17-
github.com/rakyll/gotest v0.0.6/go.mod h1:SkoesdNCWmiD4R2dljIUcfSnNdVZ12y8qK4ojDkc2Sc=
1816
github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY=
1917
github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA=
2018
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=

go/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export PATH := $(GOPATH)/bin:$(PATH)
4747
GO=GOPATH=$(GOPATH) GOPRIVATE=$(CVSPATH) $(shell which go)
4848
GOVERSION=${shell go version | grep -Po '(go[0-9]+.[0-9]+)'}
4949
GOFMT=$(shell which gofmt)
50-
GOTEST=GOPATH=$(GOPATH) $(shell which gotest)
50+
GOTEST=$(GO) test
5151
GODOC=GOPATH=$(GOPATH) $(shell which godoc)
5252
GOLANGCILINT=$(BINUTIL)/golangci-lint
5353
GOLANGCILINTVERSION=v2.4.0
@@ -114,7 +114,6 @@ coverage: ensuretarget
114114
.PHONY: deps
115115
deps: ensuretarget
116116
curl --silent --show-error --fail --location https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(BINUTIL) $(GOLANGCILINTVERSION)
117-
$(GO) install github.com/rakyll/gotest
118117
$(GO) install github.com/jstemmer/go-junit-report/v2@latest
119118

120119
# Create the trget directories if missing

go/exttools/exttools.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@ package exttools
77

88
import (
99
_ "github.com/jstemmer/go-junit-report/v2"
10-
_ "github.com/rakyll/gotest"
1110
)

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def run(self):
3030

3131
setup(
3232
name="binsearch",
33-
version="9.4.45.0",
33+
version="9.4.46.0",
3434
keywords=("binsearch"),
3535
description="Binsearch Bindings for Python",
3636
long_description=read("../README.md"),

0 commit comments

Comments
 (0)