Release v0.2.3b1#40
Merged
maxine-at-forecast merged 9 commits intofoundation-ac:mainfrom Jan 28, 2026
Merged
Conversation
…oper code rendering Griffe's Google docstring parser treats Example: (singular) as an admonition, passing raw text through including :: markers. Using Examples: (plural) is recognized as a proper examples section with code parsing, enabling quartodoc to render code blocks with sourceCode/python/code-with-copy CSS classes. - Update all docstrings across 17 source files - Regenerate quartodoc .qmd files and Quarto HTML output - Update CLAUDE.md to document the correct docstring format Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
…atch type inference Type checkers now correctly infer: - Iterable[ST] when batch_size is None (default) - Iterable[SampleBatch[ST]] when batch_size is int Closes #28 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
…and trusted publishing - Add uv caching (enable-cache: true) for faster CI runs - Add concurrency control to cancel in-progress runs on new commits - Add ruff lint job (check + format) targeting src/ and tests/ - Switch to --locked flag for reproducible dependency resolution - Add fail-fast: false to test matrix to see all failures - Enable Codecov coverage upload - Switch PyPI publishing to trusted publishing (OIDC) - Split publish workflow into build and publish jobs with artifacts - Fix all ruff lint issues (unused imports, undefined names) - Format entire codebase with ruff format (42 files) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
2e6a93d
into
foundation-ac:main
21 of 23 checks passed
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Dataset.ordered/Dataset.shuffledfor proper batch type inference (Change signature ofDataset.orderedandDataset.shuffledto properly indicate returning batch type iterables, not just sample iterables #28)Example:toExamples:format for proper quartodoc renderingChanges
Type System Improvements
Dataset.ordered()andDataset.shuffled()now have proper@overloadsignaturesIterable[ST]when unbatched,Iterable[SampleBatch[ST]]when batchedCI/CD Improvements
--lockedflag for reproducible buildsfail-fast: falseto see all test failuresCode Quality
Test plan
🤖 Generated with Claude Code