You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Use zip(strict=True) when converting tuple chunks to dict in RasterSchema
- Copy AnnData views before modifying .uns in TableModel.parse
- Use explicit string obs index in AnnData construction to avoid implicit index warnings
- Add .copy() after compute()/slice to avoid pandas SettingWithCopyWarning (CoW)
- Remove unused docs/_templates autosummary files
- Update tutorials submodule
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 91.87%. Comparing base (8d7f72f) to head (7df090f). ⚠️ Report is 26 commits behind head on main.
…ss INFO noise
Build the dataframe with only the coordinate columns actually needed for
each branch: source columns (A/B/C) when a coordinates mapping is provided,
target columns (x/y/z) otherwise. This prevents the rename-drop and
z-ignored-in-2D INFO messages (240 occurrences) from firing during tests.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…o suppress WARNING noise
The target column was a plain str Series; PointsModel.parse() converted it
to an unknown-categories dask Categorical, triggering a performance warning
on every parametrized invocation. Using pd.Categorical with known categories
up-front avoids the conversion path entirely.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…format tests
Use `re.match`-compatible pattern (anchored at start) and add
`@pytest.mark.filterwarnings` to standalone parametrized tests outside
`TestReadWrite` that intentionally exercise the V01 container format.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ilterwarnings
Replace verbose autouse fixtures (catch_warnings + isinstance check) with a
single @pytest.mark.filterwarnings decorator on each class/function. The
isinstance guard was unnecessary because V02 tests never emit the warning,
so the filter is a harmless no-op for them. Also removes now-unused
`import warnings` from test_format.py and test_readwrite.py, and
CurrentSpatialDataContainerFormat from test_attrs_io.py.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reduce warnings, in particular: