From 135fb01bbd71c98fea01a7a2612abdca531b44f6 Mon Sep 17 00:00:00 2001 From: Ben Fulcher Date: Mon, 27 Jun 2022 12:04:53 +1000 Subject: [PATCH] Python version numbering fixed --- wrap_Python/setup.py | 6 +++--- wrap_Python/setup_P3.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wrap_Python/setup.py b/wrap_Python/setup.py index 99ac421..cae7147 100644 --- a/wrap_Python/setup.py +++ b/wrap_Python/setup.py @@ -6,15 +6,15 @@ sourceFileList = [sourceDir+file for file in os.listdir(sourceDir) if file.endswith(".c") and not 'main' in file]; # and not (file == "sampen.c" or file == "run_features.c")]; # the c++ extension module -extension_mod = Extension("catch22_C", - sources=["catch22_wrap.c"] + sourceFileList, +extension_mod = Extension("catch22_C", + sources=["catch22_wrap.c"] + sourceFileList, include_dirs=[sourceDir]) # setup(name = "catch22", ext_modules=[extension_mod]) setup( name="catch22", -version="0.3.1", +version="0.4.0", author="Carl H Lubba", url="https://github.com/DynamicsAndNeuralSystems/catch22", description="CAnonical Time-series Features, see description and license on GitHub.", diff --git a/wrap_Python/setup_P3.py b/wrap_Python/setup_P3.py index b29a09e..af6aecb 100644 --- a/wrap_Python/setup_P3.py +++ b/wrap_Python/setup_P3.py @@ -6,15 +6,15 @@ sourceFileList = [sourceDir+file for file in os.listdir(sourceDir) if file.endswith(".c") and not 'main' in file]; # and not (file == "sampen.c" or file == "run_features.c")]; # the c++ extension module -extension_mod = Extension("catch22_C", - sources=["catch22_wrap_P3.c"] + sourceFileList, +extension_mod = Extension("catch22_C", + sources=["catch22_wrap_P3.c"] + sourceFileList, include_dirs=[sourceDir]) # setup(name = "catch22", ext_modules=[extension_mod], packages=['catch22']) setup( name="catch22", -version="0.3.1", +version="0.4.0", author="Carl H Lubba", url="https://github.com/DynamicsAndNeuralSystems/catch22", description="CAnonical Time-series Features, see description and license on GitHub.",