From 61453ad899291a859304a646fe1697b34e5ea7a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 10:10:01 +0000 Subject: [PATCH 1/2] chore(deps): bump the python-deps group across 1 directory with 5 updates Updates the requirements on [pandas](https://github.com/pandas-dev/pandas), [streamlit](https://github.com/streamlit/streamlit), [matplotlib](https://github.com/matplotlib/matplotlib), [ruff](https://github.com/astral-sh/ruff) and [nbstripout](https://github.com/kynan/nbstripout) to permit the latest version. Updates `pandas` to 3.0.5 - [Release notes](https://github.com/pandas-dev/pandas/releases) - [Commits](https://github.com/pandas-dev/pandas/compare/v3.0.3...v3.0.5) Updates `streamlit` to 1.60.0 - [Release notes](https://github.com/streamlit/streamlit/releases) - [Commits](https://github.com/streamlit/streamlit/compare/1.59.1...1.60.0) Updates `matplotlib` to 3.11.1 - [Release notes](https://github.com/matplotlib/matplotlib/releases) - [Commits](https://github.com/matplotlib/matplotlib/compare/v3.11.0...v3.11.1) Updates `ruff` to 0.16.0 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.15.21...0.16.0) Updates `nbstripout` to 0.9.1 - [Release notes](https://github.com/kynan/nbstripout/releases) - [Changelog](https://github.com/kynan/nbstripout/blob/main/CHANGELOG.md) - [Commits](https://github.com/kynan/nbstripout/compare/0.8.1...0.9.1) --- updated-dependencies: - dependency-name: pandas dependency-version: 3.0.5 dependency-type: direct:production dependency-group: python-deps - dependency-name: streamlit dependency-version: 1.60.0 dependency-type: direct:production dependency-group: python-deps - dependency-name: matplotlib dependency-version: 3.11.1 dependency-type: direct:production dependency-group: python-deps - dependency-name: ruff dependency-version: 0.16.0 dependency-type: direct:development dependency-group: python-deps - dependency-name: nbstripout dependency-version: 0.9.1 dependency-type: direct:development dependency-group: python-deps ... Signed-off-by: dependabot[bot] --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b017e16..a489b0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ dependencies = [ # transitively via statsmodels and is not declared here directly. "statsmodels>=0.14.6", # pandas 3.0.4 was yanked from PyPI; 3.0.3 is the latest non-yanked release. - "pandas>=3.0.3", + "pandas>=3.0.5", # scipy is a transitive dependency of statsmodels (it supplies the # underlying distributions for the F-test, Tukey HSD, etc.), so its # version materially affects the statistics output. Not declared as a @@ -60,8 +60,8 @@ dependencies = [ # publication-quality figures, and matplotlib gives one style system for # both the dashboard and the embedded thesis figures with no # browser-component fragility. - "streamlit>=1.59.1,<2.0", - "matplotlib>=3.11.0,<4", + "streamlit>=1.60.0,<2.0", + "matplotlib>=3.11.1,<4", # Windows-only: provides the IANA timezone database that zoneinfo # (used by analysis/timestamps.py) needs at runtime. macOS and most # Linux distros ship the DB with the OS, so this is a no-op there: @@ -81,10 +81,10 @@ dev = [ # misreads illustrative fragments, e.g. a trailing-comma snippet as a # tuple). Adopt it deliberately later with an explicit config, not via a # floating CI install. The pre-commit rev tracks this bound in lockstep. - "ruff>=0.15.21,<0.16", + "ruff>=0.16.0,<0.17", # Strips notebook outputs/exec-counts/metadata; also wired as a pre-commit # hook. Here so the CLI is available to strip a notebook on demand. - "nbstripout>=0.8.1", + "nbstripout>=0.9.1", ] [build-system] From b7894ddfdbb533ced65212a87f3dad7c0ecd7932 Mon Sep 17 00:00:00 2001 From: Colinho22 <48288595+Colinho22@users.noreply.github.com> Date: Fri, 24 Jul 2026 14:13:27 +0200 Subject: [PATCH 2/2] chore(deps): carve out ruff 0.16 from group bump, keep the rest --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a489b0c..6b848c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,7 @@ dev = [ # misreads illustrative fragments, e.g. a trailing-comma snippet as a # tuple). Adopt it deliberately later with an explicit config, not via a # floating CI install. The pre-commit rev tracks this bound in lockstep. - "ruff>=0.16.0,<0.17", + "ruff>=0.15.21,<0.16", # Strips notebook outputs/exec-counts/metadata; also wired as a pre-commit # hook. Here so the CLI is available to strip a notebook on demand. "nbstripout>=0.9.1",