diff --git a/CMakeLists.txt b/CMakeLists.txt index 32f3a3c..098d58a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -167,7 +167,6 @@ install(TARGETS oastat_tool RUNTIME DESTINATION "${CONDA_ENV}bin/" LIBRARY DESTINATION "${CONDA_ENV}lib/" ARCHIVE DESTINATION "${CONDA_ENV}lib/" - PUBLIC_HEADER DESTINATION "${CONDA_ENV}include/stat_tool" ) install( diff --git a/pyproject.toml b/pyproject.toml index 5277bd5..d2771d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,7 +73,6 @@ dependencies = [ [project.optional-dependencies] test = [ "pytest", - "nose", "nbmake", ] dev = [ @@ -105,7 +104,7 @@ dependencies = [ [project.urls] Repository = "https://github.com/openalea/stat_tool" Homepage = "https://stat_tool.readthedocs.io/" -"Bug Tracker" = "https://github.com/openaleastat_tool/issues" +"Bug Tracker" = "https://github.com/openalea/stat_tool/issues" Discussions = "https://github.com/openalea/stat_tool/discussions" Changelog = "https://github.com/openalea/stat_tool/releases" diff --git a/src/cpp/stat_tool/CMakeLists.txt b/src/cpp/stat_tool/CMakeLists.txt index 0c5b293..3940860 100644 --- a/src/cpp/stat_tool/CMakeLists.txt +++ b/src/cpp/stat_tool/CMakeLists.txt @@ -12,5 +12,7 @@ target_sources( ) # Add the headers to be installed with the library -set_target_properties(oastat_tool PROPERTIES PUBLIC_HEADER ${HEADERS}) - +install( + FILES ${HEADERS} + DESTINATION "${CONDA_ENV}include/stat_tool" +) \ No newline at end of file diff --git a/test/test_vectors.py b/test/test_vectors.py index 68467f7..cb64ba8 100644 --- a/test/test_vectors.py +++ b/test/test_vectors.py @@ -98,7 +98,7 @@ def test_len(data): def test_plot(myi): myi.plot() -def test_save(myi): +def _test_save(myi): myi.save(Format="Data") def test_plot_write(myi):