Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion template/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ipython==9.15.0

orjson==3.11.9
pandas==2.2.3
matplotlib==3.10.9
matplotlib==3.11.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Update boxplot callers before bumping Matplotlib

In the PR workflow I checked (.github/workflows/pull_request.yml calls build_test_template.yml and passes its template id into the Python/JS test workflows), this line builds a sandbox with Matplotlib 3.11.0. Matplotlib 3.11 removed Axes.boxplot(labels=...) in favor of tick_labels (the 3.11 signature only lists tick_labels), but the sandbox chart tests still run ax.boxplot(..., labels=data.keys(), ...) in python/tests/charts/test_box_and_whiskers.py:24 and js/tests/charts/boxAndWhisker.test.ts:26; those snippets now error before producing a chart. Please update those callers or hold this bump.

Useful? React with πŸ‘Β / πŸ‘Ž.

pillow==12.2.0

# Latest version for
Expand Down
Loading