Skip to content

Commit 751ce58

Browse files
committed
Fix go tools
1 parent a5c8e3c commit 751ce58

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.7.7
1+
5.7.8

c/doc/Doxyfile

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

35-
PROJECT_NUMBER = 5.7.7
35+
PROJECT_NUMBER = 5.7.8
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,3 @@ require (
1414
github.com/pmezard/go-difflib v1.0.0 // indirect
1515
gopkg.in/yaml.v3 v3.0.1 // indirect
1616
)
17-
18-
tool github.com/jstemmer/go-junit-report/v2

go/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ test: ensuretarget
165165
# Get the go tools
166166
.PHONY: gotools
167167
gotools:
168-
$(GO) get -tool github.com/jstemmer/go-junit-report/v2@latest
168+
$(GO) install github.com/jstemmer/go-junit-report/v2@latest
169169

170170
# Update everything
171171
.PHONY: updateall
@@ -187,6 +187,6 @@ updatelint:
187187

188188
# Update dependencies
189189
.PHONY: updatemod
190-
updatemod:
190+
updatemod: mod
191191
$(GO) get -t -u ./... && \
192192
$(GO) mod tidy -compat=$(shell grep -oP 'go \K[0-9]+\.[0-9]+' ../go.mod)

python-class/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def run(self):
3838

3939
setup(
4040
name="pyvariantkey",
41-
version="5.7.7.0",
41+
version="5.7.8.0",
4242
keywords=("variantkey variant key genetic genomics"),
4343
description="VariantKey Python wrapper class",
4444
long_description=read("../README.md"),
@@ -55,7 +55,7 @@ def run(self):
5555
],
5656
install_requires=[
5757
"numpy>=1.24.2,<2",
58-
"variantkey>=5.7.7.0",
58+
"variantkey>=5.7.8.0",
5959
],
6060
extras_require={
6161
"test": [

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="variantkey",
33-
version="5.7.7.0",
33+
version="5.7.8.0",
3434
keywords=("variantkey variant key genetic genomics"),
3535
description="VariantKey Bindings for Python",
3636
long_description=read("../README.md"),

r/variantkey/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: variantkey
22
Title: Genetic VariantKey
3-
Version: 5.7.7.0
3+
Version: 5.7.8.0
44
Authors@R: person("Nicola", "Asuni", email = "[email protected]", role = c("aut", "cre"))
55
Description: Tools to generate and process a 64 bit Unsigned Integer Keys for Human Genetic Variants.
66
The VariantKey is sortable for chromosome and position,

0 commit comments

Comments
 (0)