| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
- Remove unused `slow_scalar_pipeline` test fixture
- Remove `{try-notebook}` directive from run-status docs (no Python cells)
- Document implicit headless tracker creation in `_create_progress_tracker`
The warning fires during `import zarr` → numcodecs → google_crc32c and appears on every pipefunc import when the C extension is not compiled. Suppress it in `map/__init__.py` before importing zarr.
Codecov Report✅ All modified and coverable lines are covered by tests.
... and 1 file with indirect coverage changes 🚀 New features to boost your workflow:
|
Sorry, something went wrong.
Merging this PR will not alter performance✅ 6 untouched benchmarks Comparing fix/run-status-cleanup (f79b53a) with main (0c4637a) |
Sorry, something went wrong.
✅ PR Title Formatted CorrectlyThe title of this PR has been updated to match the correct format. Thank you! |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary
Suppress the google-crc32c pure-python fallback RuntimeWarning that fires on every pipefunc import when the C extension isn't compiled.
Import chain: pipefunc → map/__init__.py → _zarr.py → zarr → numcodecs → google_crc32c 💥
The fix adds a warnings.filterwarnings call in map/__init__.py right before the zarr import (which is already inside a suppress(ImportError) block).
Test plan