Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ dependencies = [
[project.optional-dependencies]
test = [
"pytest",
"nose",
"nbmake",
]
dev = [
Expand Down Expand Up @@ -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"

6 changes: 4 additions & 2 deletions src/cpp/stat_tool/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
2 changes: 1 addition & 1 deletion test/test_vectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Loading