fix: bump polars to 1.43.2 - #503
Conversation
polars 1.43.1 depends on the yanked polars-runtime-32==1.43.1, so uv cannot resolve it and every marimo notebook job fails with "No solution found when resolving script dependencies". Bump the inline script pin in Experiment1-5 to polars==1.43.2, raise the pyproject floor to >=1.43.2 so the yanked release is not named at all, and relock. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
Warning Review limit reached
Next review available in: 44 minutes You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (6)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Pull request overview
Updates the project’s Polars dependency to avoid a yanked transitive runtime package that breaks uv resolution for the marimo notebook scripts.
Changes:
- Raised the
pyproject.tomlminimum Polars version to>=1.43.2. - Updated the marimo notebooks’ inline PEP 723 dependency pins from
polars==1.43.1topolars==1.43.2(Experiments 1–5). - Relocked
uv.locktopolars/polars-runtime-321.43.2.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| uv.lock | Updates the resolved Polars and runtime package versions/specifiers to 1.43.2. |
| pyproject.toml | Raises the Polars dependency floor to avoid referencing the yanked 1.43.1 release. |
| book/marimo/notebooks/Experiment1.py | Bumps inline notebook dependency pin to polars==1.43.2. |
| book/marimo/notebooks/Experiment2.py | Bumps inline notebook dependency pin to polars==1.43.2. |
| book/marimo/notebooks/Experiment3.py | Bumps inline notebook dependency pin to polars==1.43.2. |
| book/marimo/notebooks/Experiment4.py | Bumps inline notebook dependency pin to polars==1.43.2. |
| book/marimo/notebooks/Experiment5.py | Bumps inline notebook dependency pin to polars==1.43.2. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Problem
polars==1.43.1depends onpolars-runtime-32==1.43.1, which has been yanked from PyPI. uv therefore cannot resolve the notebooks' inline PEP 723 dependencies, and all five marimo jobs fail:Fix
Experiment1.py…Experiment5.pytopolars==1.43.2pyproject.tomlfloor topolars>=1.43.2so the yanked release is never namedpolarsandpolars-runtime-321.43.1 → 1.43.2)Note
This is also what is currently red on #502 — that PR's five marimo jobs fail on the same resolution error. Rebasing it on main after this merges should turn it green.
🤖 Generated with Claude Code