From 09733d55a6630bb6cd7a8b8af915c174b67a56a0 Mon Sep 17 00:00:00 2001 From: John Kerl Date: Tue, 23 Jul 2024 09:56:41 -0400 Subject: [PATCH] Use `Lifecycle: maturing` for query `obsm`/`varm` --- python-spec/src/somacore/query/query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-spec/src/somacore/query/query.py b/python-spec/src/somacore/query/query.py index ae1a0464..c938ec76 100644 --- a/python-spec/src/somacore/query/query.py +++ b/python-spec/src/somacore/query/query.py @@ -257,13 +257,13 @@ def varp(self, layer: str) -> data.SparseRead: def obsm(self, layer: str) -> data.SparseRead: """Returns an ``obsm`` layer as a sparse read. - Lifecycle: experimental + Lifecycle: maturing """ return self._axism_inner(_Axis.OBS, layer) def varm(self, layer: str) -> data.SparseRead: """Returns a ``varm`` layer as a sparse read. - Lifecycle: experimental + Lifecycle: maturing """ return self._axism_inner(_Axis.VAR, layer)