From 74a59cb21b4e7e4a5bdfa4f708db93d213f4bf96 Mon Sep 17 00:00:00 2001 From: LAVAUX Guilhem Date: Tue, 28 Apr 2020 14:12:36 +0200 Subject: [PATCH] Adjust linkage --- python/CMakeLists.txt | 8 ++++---- python/_cosmo_power.pyx | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 6045aca..90d3e6e 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -50,11 +50,11 @@ if(APPLE) set(CMAKE_MODULE_LINKER_FLAGS "-undefined dynamic_lookup") endif() -target_link_libraries(_cosmotool ${CosmoTool_local} ${GSL_LIBRARIES}) -target_link_libraries(_cosmo_power ${CosmoTool_local} ${GSL_LIBRARIES}) -target_link_libraries(_cosmo_cic ${CosmoTool_local} ${GSL_LIBRARIES}) +target_link_libraries(_cosmotool PRIVATE ${CosmoTool_local} ${GSL_LIBRARIES}) +target_link_libraries(_cosmo_power PRIVATE ${CosmoTool_local} ${GSL_LIBRARIES}) +target_link_libraries(_cosmo_cic PRIVATE ${CosmoTool_local} ${GSL_LIBRARIES}) target_link_libraries(_project ) -target_link_libraries(_fast_interp ${CosmoTool_local} ) +target_link_libraries(_fast_interp PRIVATE ${CosmoTool_local} ) SET(ct_TARGETS _cosmotool _project _cosmo_power _cosmo_cic _fast_interp ) diff --git a/python/_cosmo_power.pyx b/python/_cosmo_power.pyx index 2d01e72..bf4bd4b 100644 --- a/python/_cosmo_power.pyx +++ b/python/_cosmo_power.pyx @@ -81,7 +81,7 @@ cdef class CosmologyPower: if 'ns' in cosmo: self.power.n = cosmo['ns'] if 'T27' in cosmo: - self.power.THETA_27 = cosmo['T27'] + self.power.Theta_27 = cosmo['T27'] assert self.power.OMEGA_C > 0 diff --git a/setup.py b/setup.py index a3d1a58..74d4925 100644 --- a/setup.py +++ b/setup.py @@ -218,7 +218,7 @@ class BuildCMakeExt(build_ext): CosmoTool_extension = CMakeExtension(name="cosmotool") setup(name='cosmotool', - version='1.0.0a2', + version='1.0.0a3', packages=["cosmotool"], package_dir={'cosmotool': 'python/cosmotool'}, setup_requires=['cython','cffi','numexpr'],