summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2023-06-09 16:55:41 -0400
committerGuillaume Horel <guillaume.horel@gmail.com>2023-06-09 16:55:41 -0400
commit73c5e0ebb06afd5401e115c6ba8c54814e4e90df (patch)
tree87b0d1a34d026637ea23e7b468044f522eee2313 /setup.py
parentc225db00f4448eb3566f567e0c44d3ffb5967c03 (diff)
downloadpyisda-73c5e0ebb06afd5401e115c6ba8c54814e4e90df.tar.gz
bump to 0.3.25v0.3.25
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 354d265..5844280 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ import numpy
all_extensions = Extension(
"*",
["pyisda/*.pyx"],
- include_dirs=["c_layer", numpy.get_include()],
+ include_dirs=["c_layer", numpy.get_include(), ],
libraries=["cds", "farmhash", "lz4"],
language="c++",
extra_compile_args=["-fopenmp", "-Wall"],
@@ -32,7 +32,7 @@ all_extensions = cythonize(
setup(
name="pyisda",
- version="0.3.24",
+ version="0.3.25",
author="Guillaume Horel",
ext_modules=all_extensions,
packages=["pyisda"],