From 73352010173cc3100fa2af2d99858e895801d7ff Mon Sep 17 00:00:00 2001 From: Daniel McCloy Date: Sun, 1 Oct 2023 12:35:26 -0500 Subject: [PATCH] add MNE to list of SPEC001 adopters (#271) Since MNE-Python isn't a core project, it isn't possible for us to endorse any SPECs. So this is a question-as-PR: do you want a record of all the non-core ecosystem projects that *adopt* each SPEC? If not feel free to close. --- spec-0001/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spec-0001/index.md b/spec-0001/index.md index 2a2200cd..0977cce7 100644 --- a/spec-0001/index.md +++ b/spec-0001/index.md @@ -51,8 +51,9 @@ Endorsing this SPEC means agreeing, in principle, with the advantages of lazy lo Adopting this SPEC means implementing, using the `lazy_loader` package or any other mechanism (such as module `__getattr__`), lazy loading of subpackages and, if desired, subpackage attributes. Lazy loading has been adopted by -[scikit-image](https://github.com/scikit-image/scikit-image/pull/5101) -and [NetworkX](https://github.com/networkx/networkx/pull/4909). +[scikit-image](https://github.com/scikit-image/scikit-image/pull/5101), +[NetworkX](https://github.com/networkx/networkx/pull/4909), +and [MNE-Python](https://github.com/mne-tools/mne-python/pull/11838). SciPy implements a [subset of lazy loading](https://github.com/scipy/scipy/pull/15230) which exposes only subpackages lazily.