diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 14c2168..def9dbf 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -9,6 +9,9 @@ LePHARE is distributed with `pypi `_, and thu .. code-block:: bash + # We recommend using Python 3.12 which is the best tested + conda create -n python=3.12 + conda activate pip install lephare .. note:: @@ -131,9 +134,8 @@ editable mode with the `-e` option so that any changes are immediately propagate .. code-block:: bash - conda create env -n + conda create -n python=3.12 conda activate - conda install cxx-compilers # May not be required for linux git clone https://github.com/lephare-photoz/lephare.git cd lephare git submodule update --init --recursive @@ -144,9 +146,8 @@ editable mode with the `-e` option so that any changes are immediately propagate .. code-block:: bash - conda create env -n + conda create -n python=3.12 conda activate - conda install cxx-compilers brew install llvm libomp git clone https://github.com/lephare-photoz/lephare.git cd lephare diff --git a/src/lib/_bindings.cc b/src/lib/_bindings.cc index 79a9d59..c805c73 100644 --- a/src/lib/_bindings.cc +++ b/src/lib/_bindings.cc @@ -63,10 +63,9 @@ PYBIND11_MODULE(_lephare, mod) { "standard constructor") .def_readwrite("lamb_opa", &opa::lamb_opa) .def_readwrite("opared", &opa::red) - .def("read", &opa::read) - // .def("lmin", &opa::lmin, "return smallest wavelength stored") - // .def("lmax", &opa::lmax, "return largest wavelength stored") - ; + .def("read", &opa::read); + // .def("lmin", &opa::lmin, "return smallest wavelength stored") + // .def("lmax", &opa::lmax, "return largest wavelength stored") /******** CLASS EXT *********/ py::class_(mod, "ext")