summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2023-02-02 15:47:06 -0500
committerGuillaume Horel <guillaume.horel@gmail.com>2023-02-02 15:47:06 -0500
commitfe6d1bc02d560819be454a431739c718e9f68cc0 (patch)
tree917b8ac03a182a09f6e9e95f6d163bf55c8f60c8
parentee4959ee8cf865024a07b7260c26ca8b47a49dbb (diff)
downloadpyisda-43356ed15e01142914e9e5b2c3dc5922519dc29a.tar.gz
bump to 0.3.18v0.3.18
-rw-r--r--setup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 4f69552..4a01d08 100644
--- a/setup.py
+++ b/setup.py
@@ -9,8 +9,8 @@ all_extensions = Extension(
include_dirs=["c_layer", numpy.get_include()],
libraries=["cds", "farmhash", "lz4"],
language="c++",
- extra_compile_args=["-fopenmp"],
- extra_link_args=["-fopenmp", "-Wl,--strip-all"],
+ extra_compile_args=["-fopenmp", "-g"],
+ extra_link_args=["-fopenmp"],
)
c_extension = Extension(
@@ -32,7 +32,7 @@ all_extensions = cythonize(
setup(
name="pyisda",
- version="0.3.17",
+ version="0.3.18",
author="Guillaume Horel",
ext_modules=all_extensions,
packages=["pyisda"],