From cfa76f66865fceb526fe156ba94f28c452424b04 Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Thu, 28 Nov 2024 10:34:00 +0100 Subject: [PATCH] Doc: Include hdf5 functions in Python API doc * requires libhdf5 on RTD * exclude developer info from API doc --- .readthedocs.yml | 1 + include/amici/solver.h | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 23cc6addeb..9b63ce6dce 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -21,6 +21,7 @@ build: os: "ubuntu-22.04" apt_packages: - libatlas-base-dev + - libhdf5-serial-dev - swig tools: python: "3.11" diff --git a/include/amici/solver.h b/include/amici/solver.h index f7cde1efa0..84eb479cf6 100644 --- a/include/amici/solver.h +++ b/include/amici/solver.h @@ -39,7 +39,8 @@ namespace amici { * variables and status flags) are specified as mutable and not included in * serialization or equality checks. No solver setting parameter should be * marked mutable. - * + */ +/* * NOTE: Any changes in data members here must be propagated to copy ctor, * equality operator, serialization functions in serialization.h, and * amici::hdf5::(read/write)SolverSettings(From/To)HDF5 in hdf5.cpp.