Skip to content

Commit 5365c6e

Browse files
committed
Update c version
1 parent a45f22b commit 5365c6e

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.7.10
1+
5.7.11

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.10
35+
PROJECT_NUMBER = 5.7.11
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

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.10.0",
41+
version="5.7.11.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.10.0",
58+
"variantkey>=5.7.11.0",
5959
],
6060
extras_require={
6161
"test": [

python/setup.py

Lines changed: 2 additions & 2 deletions
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.10.0",
33+
version="5.7.11.0",
3434
keywords=("variantkey variant key genetic genomics"),
3535
description="VariantKey Bindings for Python",
3636
long_description=read("../README.md"),
@@ -48,7 +48,7 @@ def run(self):
4848
extra_compile_args=[
4949
"-O3",
5050
"-pedantic",
51-
"-std=c17",
51+
"-std=c2x",
5252
"-Wall",
5353
"-Wextra",
5454
"-Wno-strict-prototypes",

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.10.0
3+
Version: 5.7.11.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,

r/variantkey/src/Makevars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PKG_CFLAGS=-O3 -pedantic -std=c17 -Wall -Wextra -Wno-strict-prototypes -Wunused-value -Wcast-align -Wundef -Wformat -Wformat-security -Wshadow
1+
PKG_CFLAGS=-O3 -pedantic -std=c2x -Wall -Wextra -Wno-strict-prototypes -Wunused-value -Wcast-align -Wundef -Wformat -Wformat-security -Wshadow

0 commit comments

Comments
 (0)