From ce016460e8badf36293e946c327644f9b13aa30d Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Sun, 21 Jun 2026 21:40:23 +0200 Subject: [PATCH] Revise Matlab notes in README (to fix obsolete link to readme-listings workflow) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b157a09..aed5fe7a 100644 --- a/README.md +++ b/README.md @@ -307,7 +307,7 @@ print(aero_state.masses()'aero_state.num_concs, "# kg/m3") #### Matlab (using [Matlab's built-in Python interface](https://www.mathworks.com/help/matlab/python-language.html)) -notes (see the [PyPartMC Matlab CI workflow](https://github.com/open-atmos/PyPartMC/blob/main/.github/workflows/readme_listings.yml) for an example on how to achieve it on Ubuntu 20): +notes (see the `readme_matlab` job definition in [PyPartMC CI workflow](https://github.com/open-atmos/PyPartMC/blob/main/.github/workflows/buildwheels.yml) for an example on how to achieve it on Ubuntu): - Matlab ships with convenience copies of C, C++ and Fortran runtime libraries which are `dlopened()` by default; one way to make PyPartMC OK with it is to [pip-]install by compiling from source using the very same version of GCC that Matlab borrowed these libraries from (e.g., [GCC 9 for Matlab R2022a, etc](https://www.mathworks.com/support/requirements/supported-compilers-linux.html)); - Matlab needs to [use the same Python interpretter/venv](https://www.mathworks.com/support/requirements/python-compatibility.html) as the pip invocation used to install PyPartMC;