Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 19, 2025

Bumps the test-data-dependencies group in /test/e2e/content-workspace/examples-shiny-python with 5 updates:

Package From To
shiny 1.1.0 1.5.0
shinywidgets 0.3.3 0.7.0
plotly 5.24.1 6.3.0
pandas 2.2.2 2.3.2
ridgeplot 0.1.25 0.4.0

Updates shiny from 1.1.0 to 1.5.0

Release notes

Sourced from shiny's releases.

shiny 1.5.0

New features

  • Added AI-powered test generator for Shiny applications. Use shiny add test to automatically generate comprehensive Playwright tests for your apps using AI models from Anthropic or OpenAI. (#2041)

  • ui.sidebar() is now interactively resizable. (#2020)

  • ui.sidebar() gains a fillable argument to support vertical fill behavior in sidebars. (#2077)

  • Added ui.insert_nav_panel(), ui.remove_nav_panel(), and ui.update_nav_panel() to support dynamic navigation. (#90)

  • navset_card_*() now gains a full_screen option. (#1451)

  • ui.update_*() functions now accept ui.TagChild (i.e., HTML) as input to the label and icon arguments. (#2020)

  • The .output_*() methods of the ClientData class (e.g., session.clientdata.output_height()) can now be called without an id when called inside a @render function. (#1978)

  • playwright.controller.InputActionButton gains a expect_icon() method. As a result, the already existing expect_label() no longer includes the icon. (#2020)

Breaking changes

  • The ui.Chat and ui.MarkdownStream components are now imported from the new shinychat library. Future versions of shinychat will likely deprecate and remove some features from Chat. If you still want to use those features with the latest Shiny, we suggest pinning shinychat to it's initial release (v0.1.0). (#2051)

  • express.ui.insert_accordion_panel()'s function signature has changed to be more ergonomic. Now you can pass the panel_title and panel_contents directly instead of ui.hold()ing the ui.accordion_panel() context manager. (#2042)

Improvements

  • Improved the styling and readability of markdown tables rendered by ui.Chat() and ui.MarkdownStream(). (#1973)

  • input_date(), input_date_range(), update_date(), and update_date_range() now support "" for values, mins, and maxes. In this case, no date will be specified on the client. (#1713) (#1689)

  • Restricted the allowable types of the choices parameter of input_select(), input_selectize(), update_select(), and update_selectize() to actual set of allowable types (previously, the type was suggesting HTML-like values were supported). (#2048)

  • Added module support for session.clientdata methods. This allows you to access client data values in Shiny modules without needing to namespace the keys explicitly. (#1978)

  • Added timeout_secs parameter to create_app_fixture to allow testing apps with longer startup times. (#2033)

  • Add support for selecting menu items in Navset controllers to improve dropdown navigation test coverage. (#2066)

  • Python 3.13 is now offically supported and tested. (#1711)

Bug fixes

  • Fixed issue where apps run in Workbench were unexpectedly crashing. Apps running in Workbench will now have ws_per_message_deflate=False enforced. (#2005)

  • include_js() and include_css() now work as expected in multi-user settings and also when multiple files from the same directory are included. (#2061, #2069)

  • Fixed numerous issues related to programmatically updating selectize options. (#2053)

    • update_selectize(options=...) no longer gets ignored when server=False (the default).
    • update_selectize(options=...) now works as expected in a module.

... (truncated)

Changelog

Sourced from shiny's changelog.

[1.5.0] - 2025-09-11

New features

  • Added AI-powered test generator for Shiny applications. Use shiny add test to automatically generate comprehensive Playwright tests for your apps using AI models from Anthropic or OpenAI. (#2041)

  • ui.sidebar() is now interactively resizable. (#2020)

  • ui.sidebar() gains a fillable argument to support vertical fill behavior in sidebars. (#2077)

  • Added ui.insert_nav_panel(), ui.remove_nav_panel(), and ui.update_nav_panel() to support dynamic navigation. (#90)

  • navset_card_*() now gains a full_screen option. (#1451)

  • ui.update_*() functions now accept ui.TagChild (i.e., HTML) as input to the label and icon arguments. (#2020)

  • The .output_*() methods of the ClientData class (e.g., session.clientdata.output_height()) can now be called without an id when called inside a @render function. (#1978)

  • playwright.controller.InputActionButton gains a expect_icon() method. As a result, the already existing expect_label() no longer includes the icon. (#2020)

Breaking changes

  • The ui.Chat and ui.MarkdownStream components are now imported from the new shinychat library. Future versions of shinychat will likely deprecate and remove some features from Chat. If you still want to use those features with the latest Shiny, we suggest pinning shinychat to it's initial release (v0.1.0). (#2051)

  • express.ui.insert_accordion_panel()'s function signature has changed to be more ergonomic. Now you can pass the panel_title and panel_contents directly instead of ui.hold()ing the ui.accordion_panel() context manager. (#2042)

Improvements

  • Improved the styling and readability of markdown tables rendered by ui.Chat() and ui.MarkdownStream(). (#1973)

  • input_date(), input_date_range(), update_date(), and update_date_range() now support "" for values, mins, and maxes. In this case, no date will be specified on the client. (#1713) (#1689)

  • Restricted the allowable types of the choices parameter of input_select(), input_selectize(), update_select(), and update_selectize() to actual set of allowable types (previously, the type was suggesting HTML-like values were supported). (#2048)

  • Added module support for session.clientdata methods. This allows you to access client data values in Shiny modules without needing to namespace the keys explicitly. (#1978)

  • Added timeout_secs parameter to create_app_fixture to allow testing apps with longer startup times. (#2033)

  • Add support for selecting menu items in Navset controllers to improve dropdown navigation test coverage. (#2066)

  • Python 3.13 is now offically supported and tested. (#1711)

Bug fixes

  • Fixed issue where apps run in Workbench were unexpectedly crashing. Apps running in Workbench will now have ws_per_message_deflate=False enforced. (#2005)

  • include_js() and include_css() now work as expected in multi-user settings and also when multiple files from the same directory are included. (#2061, #2069)

  • Fixed numerous issues related to programmatically updating selectize options. (#2053)

    • update_selectize(options=...) no longer gets ignored when server=False (the default).

... (truncated)

Commits
  • 608a115 v1.5.0 release
  • 5e3f2d5 Follow up to #2005: fix location of CHANGELOG item
  • 65fa9b3 ci: Bump deploy-tests to use latest shiny+htmltools releases (#2084)
  • 8b9d686 chore: Polish CHANGELOG for v1.5.0 release (#2081)
  • 031d1ae chore(add-test): Rename testgen extra to add-test and update Makefile (#2082)
  • 23a66cb feat(sidebar): Add fillable parameter (#2077)
  • 83d3952 feat(cli): Add AI support to shiny add test (#2041)
  • c78c8f1 fix: Make outside users able to read tmp files (#2070)
  • 5bd00b6 docs: update module server and ui to incorporate #705 (#2044)
  • 17e0b17 fix: errors on bookmark are now surfaced in the Python console (#2076)
  • Additional commits viewable in compare view

Updates shinywidgets from 0.3.3 to 0.7.0

Release notes

Sourced from shinywidgets's releases.

shinywidgets 0.7.0

  • datetime.date() values are properly JSON serialized. (#204)
  • Fixed an issue were callbacks on a plotly FigureWidget object were getting dropped with recent versions of plotly. (#207, thanks @​simeonschwarzenberg)

shinywidgets 0.6.2

  • Eliminate the possibility of a single @render_widget output from keeping a view of prior renders. (#196)

shinywidgets 0.6.1

  • Fixed an issue introduced by v0.6.0 where cleanup wasn't happening when it should be. (#195)

shinywidgets 0.6.0

  • Widgets initialized inside a reactive.effect() are no longer automatically removed when the effect invalidates. (#191)

shinywidgets 0.5.2

  • Constructing a widget inside of a shiny.reactive.ExtendedTask() no longer errors out. (#188)

shinywidgets 0.5.1

  • Fixes 'AttributeError: object has no attribute "repr_mimebundle"'. (#184)

shinywidgets 0.5.0

  • Updates to accomodate the new plotly v6.0.0 release. (#182)
  • Fixed an issue with plotly graphs sometimes not getting fully removed from the DOM. (#178)
  • Added anywidget as a package dependency since it's needed now for altair and plotly (and installing this packages won't necessarily install anywidget). (#183)
  • Fixed an issue with ipyleaflet erroring out when attempting to read the .model_id property of a closed widget object. (#179)
  • Fixed an issue where altair charts would sometimes render to a 0 height after being shown, hidden, and then shown again. (#180)

shinywidgets 0.4.2

Fixed an issue where @render_widget would sometimes incorrectly render a new widget without removing the old one. (#167)

shinywidgets 0.4.1

Fixed a Python 3.9 compatibility issue.

shinywidgets 0.4.0

  • Fixed a memory leak issue. (#167)

shinywidgets 0.3.4

  • Fixed an issue where widgets would sometimes fail to render in a Quarto document. (#159)
  • Fixed an issue where importing shinywidgets before a ipywidget implementation can sometimes error in a Shiny Express app. (#163)
Changelog

Sourced from shinywidgets's changelog.

[0.7.0] - 2025-07-14

  • datetime.date() values are properly JSON serialized. (#204)
  • Fixed an issue were callbacks on a plotly FigureWidget object were getting dropped with recent versions of plotly. (#207, thanks @​simeonschwarzenberg)

[0.6.2] - 2025-05-21

  • Eliminate the possibility of a single @render_widget output from keeping a view of prior renders. (#196)

[0.6.1] - 2025-05-21

  • Fixed an issue introduced by v0.6.0 where cleanup wasn't happening when it should be. (#195)

[0.6.0] - 2025-05-19

  • Widgets initialized inside a reactive.effect() are no longer automatically removed when the effect invalidates. (#191)

[0.5.2] - 2025-04-04

  • Constructing a widget inside of a shiny.reactive.ExtendedTask() no longer errors out. (#188)

[0.5.1] - 2025-01-30

  • Fixes 'AttributeError: object has no attribute "repr_mimebundle"'. (#184)

[0.5.0] - 2025-01-29

  • Updates to accomodate the new plotly v6.0.0 release. (#182)
  • Fixed an issue with plotly graphs sometimes not getting fully removed from the DOM. (#178)
  • Added anywidget as a package dependency since it's needed now for altair and plotly (and installing this packages won't necessarily install anywidget). (#183)
  • Fixed an issue with ipyleaflet erroring out when attempting to read the .model_id property of a closed widget object. (#179)
  • Fixed an issue where altair charts would sometimes render to a 0 height after being shown, hidden, and then shown again. (#180)

[0.4.2] - 2024-12-18

  • Fixed an issue where @render_widget would sometimes incorrectly render a new widget without removing the old one. (#167)

[0.4.1] - 2024-12-17

  • Fixed a Python 3.9 compatibility issue.

[0.4.0] - 2024-12-16

  • Fixed a memory leak issue. (#167)

[0.3.4] - 2024-10-29

  • Fixed an issue where widgets would sometimes fail to render in a Quarto document. (#159)
  • Fixed an issue where importing shinywidgets before a ipywidget implementation can sometimes error in a Shiny Express app. (#163)
Commits
  • 7f48f76 v0.7.0 release
  • c2d4637 Closes #206: preserve plotly FigureWidget layout callbacks (#207)
  • 9d36df5 Close #204: JSON serialize datetime.date() values
  • d84e8d3 Start new version
  • f0cd970 v0.6.2 release
  • 923e108 Eliminate the possibility of a single render_widget output from keeping a v...
  • 31410ef v0.6.1 release
  • 212acf8 Properly cleanup when the Widget is initialized by an implicit as_widget() ...
  • 03ed44c v0.6.0 release
  • e3bd341 Workaround for broken plotly type
  • Additional commits viewable in compare view

Updates plotly from 5.24.1 to 6.3.0

Release notes

Sourced from plotly's releases.

v6.3.0

Updated

  • Updated Plotly.js from version 3.0.1 to version 3.1.0. See the plotly.js release notes for more information. [#5318]

Added

  • Exposed plotly.io.get_chrome() as a function which can be called from within a Python script. [#5282]

Fixed

  • Resolved issue causing extraneous engine deprecation warnings [#5287], with thanks to @​jdbeel for the contribution!

v6.2.0

Added

  • Add SRI (Subresource Integrity) hash support for CDN script tags when using include_plotlyjs='cdn'. This enhances security by ensuring browser verification of CDN-served plotly.js files [#5165] (with thanks to @​ddworken)

Fixed

  • Allow setting Plotly.js path via pio.defaults [#5207]

Changed

  • Refactor validation code to reduce bundle size [#5214] (with thanks to @​bmaranville)
  • Add deprecation warnings when using Kaleido v0 or deprecated image export features [#5177]

v6.1.2

Fixed

  • Fix type checking and code highlighting for graph_objects classes [#5199]

v6.1.1

Fixed

  • Prevent swallowing of ValueError when creating a figure with subplots [#3888]
  • Fix issue causing fig.write_image() to not generate an image [#5193]

v6.1.0

Updated

  • Add support for Kaleido>=v1.0.0 for image generation [#5062, #5177]
  • Reduce package bundle size by 18-24% via changes to code generation [#4978]

Fixed

  • Fix third-party widget display issues in v6 [#5102]
  • Add handling for case where jupyterlab or notebook is not installed [#5104]
  • Fix issue causing Plotly.js script to be embedded multiple times in Jupyter notebooks [#5112]
  • Re-add MIME renderer JupyterLab extension with JupyterLab 4 support to reduce file sizes for offline notebooks [#5096]
  • Fix issue preventing plots from rendering in HTML notebook export when using 'vscode+notebook' renderer [#5154]

v6.1.0rc0

Updated

  • Add support for Kaleido>=v1.0.0 for image generation, and deprecate support for Kaleido<1 and Orca [#5062]
  • Reduce package bundle size by 18-24% via changes to code generation [#4978]

Fixed

  • Fix third-party widget display issues in v6 [#5102]
  • Add handling for case where jupyterlab or notebook is not installed [#5104]

... (truncated)

Changelog

Sourced from plotly's changelog.

[6.3.0] - 2025-08-12

Updated

  • Updated Plotly.js from version 3.0.1 to version 3.1.0. See the plotly.js release notes for more information. [#5318]

Added

  • Exposed plotly.io.get_chrome() as a function which can be called from within a Python script. [#5282]

Fixed

  • Resolved issue causing extraneous engine deprecation warnings [#5287], with thanks to @​jdbeel for the contribution!

[6.2.0] - 2025-06-26

Added

  • Add SRI (Subresource Integrity) hash support for CDN script tags when using include_plotlyjs='cdn'. This enhances security by ensuring browser verification of CDN-served plotly.js files [#5165] (with thanks to @​ddworken)

Fixed

  • Allow setting Plotly.js path via pio.defaults [#5207]

Changed

  • Refactor validation code to reduce bundle size [#5214] (with thanks to @​bmaranville)
  • Add deprecation warnings when using Kaleido v0 or deprecated image export features [#5177]

[6.1.2] - 2025-05-27

Fixed

  • Fix type checking and code highlighting for graph_objects classes [#5199]

[6.1.1] - 2025-05-20

Fixed

  • Prevent swallowing of ValueError when creating a figure with subplots [#3888]
  • Fix issue causing fig.write_image() to not generate an image [#5193]

[6.1.0] - 2025-05-15

Updated

  • Add support for Kaleido>=v1.0.0 for image generation [#5062, #5177]
  • Reduce package bundle size by 18-24% via changes to code generation [#4978]

Fixed

  • Fix third-party widget display issues in v6 [#5102]
  • Add handling for case where jupyterlab or notebook is not installed [#5104]
  • Fix issue causing Plotly.js script to be embedded multiple times in Jupyter notebooks [#5112]
  • Re-add MIME renderer JupyterLab extension with JupyterLab 4 support to reduce file sizes for offline notebooks [#5096]
  • Fix issue preventing plots from rendering in HTML notebook export when using 'vscode+notebook' renderer [#5154]

[6.0.1] - 2025-03-14

... (truncated)

Commits
  • 53572f6 Update uv lock file
  • 3b5a65f version changes for v6.3.0
  • 6b7565b Merge pull request #5318 from plotly/update-plotlyjs-3.1.0
  • c2225b7 add DeprecationWarning for upcoming change in locationmode 'country names'
  • deef7a3 update plotly/labextension
  • 0589b22 upgrade plotly.js to 3.1.0
  • 694b036 Merge pull request #5308 from plotly/update-doc-string
  • 480a1af Merge pull request #5287 from jdbeel/update-external-renderer-default
  • c07de25 Merge branch 'main' into update-external-renderer-default
  • 9f4b774 Update _json.py
  • Additional commits viewable in compare view

Updates pandas from 2.2.2 to 2.3.2

Release notes

Sourced from pandas's releases.

Pandas 2.3.2

We are pleased to announce the release of pandas 2.3.2. This release includes some improvements and fixes to the future string data type (preview feature for the upcoming pandas 3.0). We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.3.2 supports Python 3.9 and higher.

The release will be available on the conda-forge channel:

conda install pandas --channel conda-forge

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Pandas 2.3.1

We are pleased to announce the release of pandas 2.3.1. This release includes some improvements and fixes to the future string data type (preview feature for the upcoming pandas 3.0). We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.3.1 supports Python 3.9 and higher.

The release will be available on the conda-forge channel:

conda install pandas --channel conda-forge

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Pandas 2.3.0

We are pleased to announce the release of pandas 2.3.0. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.3.0 supports Python 3.10 and higher.

The release will be available on the defaults and conda-forge channels:

conda install -c conda-forge pandas

Or via PyPI:

... (truncated)

Commits
  • 4665c10 RLS: 2.3.2
  • 633c68b DOC: fix syntax in whatsnew file
  • 456ad47 Backport PR #62152 on branch 2.3.x (DOC: prepare 2.3.2 whatsnew notes for rel...
  • 6cae644 [backport 2.3.x] DOC: move and reword whatsnew note for replace fix (GH-57865...
  • a91c50a Backport PR #62147 on branch 2.3.x (DOC: correct and rewrite string migration...
  • f7a2cfd [backport 2.3.x] BUG/DEPR: logical operation with bool and string (#61995) (#...
  • 7981a43 Backport PR #62124 on branch 2.3.x (CI/BLD: don't use strict xfail for '%m.%Y...
  • fafbcbd [backport 2.3.x] BUG(CoW): also raise for chained assignment for .at / .iat (...
  • 3ac64a7 [backport 2.3.x] BUG: Fix Series.str.contains with compiled regex on Arrow st...
  • 1f2dc4f [backport 2.3.x] BUG: fix Series.str.fullmatch() and Series.str.match() with ...
  • Additional commits viewable in compare view

Updates ridgeplot from 0.1.25 to 0.4.0

Release notes

Sourced from ridgeplot's releases.

0.4.0

Features

  • Add support for custom row labels via a new row_labels argument (#333)

Deprecations

  • Deprecated the show_yticklabels argument in favor of the new more general and flexible row_labels argument (#333)

CI/CD

  • Add ./cicd_utils/find-unmentioned-prs.sh helper script to find merged PRs that were not mentioned in the changelog yet (#334)
  • Bump actions/first-interaction from 1 to 3 (#331)
  • Bump actions/checkout from 4 to 5 (#330)
  • Bump actions/download-artifact from 4 to 5 (#329)
  • Bump sigstore/gh-action-sigstore-python from 3.0.0 to 3.0.1 (#326)
  • pre-commit autoupdate (#324)

Dependencies

  • Remove importlib_metadata usage from conf.py (#332)

0.3.2

Internal

  • Fix regression tests for Plotly 6.0+ by updating the JSON test artifacts (#313)
  • Add an OFFLINE-mode option to the Makefile and make uv compulsory for local development (#322)

0.3.1

Internal

  • Improve type annotations and use stricter pyright settings (#291)

Documentation

  • Use sphinxcontrib.apidoc to automatically generate API docs from the source code (#296)
  • Update hero image in the docs' landing page (#300)
  • Update release process notes (#301 and #303)

CI/CD

  • Fix regressions tests by comparing against JSON artifacts instead of flaky JPEGs (#299)

... (truncated)

Commits
  • 5b8342f Release version 0.4.0
  • 73b3afe Merge pull request #334 from tpvasconcelos/release-notes
  • afd98b1 Update changelog.md
  • 4fdcd53 Add find-unmentioned-prs.sh helper script
  • 34c4f5f Exclude zsh scripts (unsupported by shellcheck)
  • 9837c13 Update changelog.md
  • 476c599 Merge pull request #333 from tpvasconcelos/y_labels
  • 34ba839 Add plotly stubs
  • 9584f7d Add test_row_labels_false test
  • d82ed67 Update changelog
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 19, 2025
Bumps the test-data-dependencies group in /test/e2e/content-workspace/examples-shiny-python with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [shiny](https://github.com/posit-dev/py-shiny) | `1.1.0` | `1.5.0` |
| [shinywidgets](https://github.com/rstudio/py-shinywidgets) | `0.3.3` | `0.7.0` |
| [plotly](https://github.com/plotly/plotly.py) | `5.24.1` | `6.3.0` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.2.2` | `2.3.2` |
| [ridgeplot](https://github.com/tpvasconcelos/ridgeplot) | `0.1.25` | `0.4.0` |


Updates `shiny` from 1.1.0 to 1.5.0
- [Release notes](https://github.com/posit-dev/py-shiny/releases)
- [Changelog](https://github.com/posit-dev/py-shiny/blob/main/CHANGELOG.md)
- [Commits](posit-dev/py-shiny@v1.1.0...v1.5.0)

Updates `shinywidgets` from 0.3.3 to 0.7.0
- [Release notes](https://github.com/rstudio/py-shinywidgets/releases)
- [Changelog](https://github.com/posit-dev/py-shinywidgets/blob/main/CHANGELOG.md)
- [Commits](posit-dev/py-shinywidgets@v0.3.3...v0.7.0)

Updates `plotly` from 5.24.1 to 6.3.0
- [Release notes](https://github.com/plotly/plotly.py/releases)
- [Changelog](https://github.com/plotly/plotly.py/blob/main/CHANGELOG.md)
- [Commits](plotly/plotly.py@v5.24.1...v6.3.0)

Updates `pandas` from 2.2.2 to 2.3.2
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.2.2...v2.3.2)

Updates `ridgeplot` from 0.1.25 to 0.4.0
- [Release notes](https://github.com/tpvasconcelos/ridgeplot/releases)
- [Changelog](https://github.com/tpvasconcelos/ridgeplot/blob/main/CHANGES.md)
- [Commits](tpvasconcelos/ridgeplot@0.1.25...0.4.0)

---
updated-dependencies:
- dependency-name: shiny
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-data-dependencies
- dependency-name: shinywidgets
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-data-dependencies
- dependency-name: plotly
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: test-data-dependencies
- dependency-name: pandas
  dependency-version: 2.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-data-dependencies
- dependency-name: ridgeplot
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-data-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/test/e2e/content-workspace/examples-shiny-python/test-data-dependencies-e50d2b3bfc branch from 6f0ef4e to dc97ce7 Compare October 1, 2025 13:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants