From f4e51c9c3d52544a2bdf106c99e8fbb76ca69a7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 00:14:44 +0000 Subject: [PATCH] chore(deps): bump the python-deps group with 2 updates Updates the requirements on [pandas](https://github.com/pandas-dev/pandas) and [ruff](https://github.com/astral-sh/ruff) to permit the latest version. Updates `pandas` to 3.0.4 - [Release notes](https://github.com/pandas-dev/pandas/releases) - [Commits](https://github.com/pandas-dev/pandas/compare/v3.0.3...v3.0.4) Updates `ruff` to 0.15.20 - [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.18...0.15.20) --- updated-dependencies: - dependency-name: pandas dependency-version: 3.0.4 dependency-type: direct:production dependency-group: python-deps - dependency-name: ruff dependency-version: 0.15.20 dependency-type: direct:development dependency-group: python-deps ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5045187..27503ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ dependencies = [ # explicitly rather than relying on the transitive pin. scipy arrives # transitively via statsmodels and is not declared here directly. "statsmodels>=0.14.6", - "pandas>=3.0.3", + "pandas>=3.0.4", # 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 @@ -75,7 +75,7 @@ dependencies = [ # Dev tooling - install with: pip install -e ".[dev]" dev = [ "pytest>=9.1.1", - "ruff>=0.15.18", + "ruff>=0.15.20", ] [build-system]