From 7f695e5dacb57f022c1c12c6e596d4e5ad85c882 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 04:29:34 +0000 Subject: [PATCH] Bump the python-dependencies group with 4 updates Updates the requirements on [numpy](https://github.com/numpy/numpy), [pytest](https://github.com/pytest-dev/pytest), [coverage](https://github.com/coveragepy/coveragepy) and [ruff](https://github.com/astral-sh/ruff) to permit the latest version. Updates `numpy` to 2.5.0 - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](https://github.com/numpy/numpy/compare/v1.24.2...v2.5.0) Updates `pytest` from 9.0.3 to 9.1.1 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/9.0.3...9.1.1) Updates `coverage` from 7.14.1 to 7.14.3 - [Release notes](https://github.com/coveragepy/coveragepy/releases) - [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst) - [Commits](https://github.com/coveragepy/coveragepy/compare/7.14.1...7.14.3) Updates `ruff` from 0.15.15 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.15...0.15.20) --- updated-dependencies: - dependency-name: numpy dependency-version: 2.5.0 dependency-type: direct:production dependency-group: python-dependencies - dependency-name: pytest dependency-version: 9.1.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: coverage dependency-version: 7.14.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: python-dependencies - dependency-name: ruff dependency-version: 0.15.20 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: python-dependencies ... Signed-off-by: dependabot[bot] --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2bac4db1..32dbc38d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,7 +90,7 @@ dependencies = [ "h5py>=3.10.0", # License: BSD # Required for knnvector workload - "numpy>=1.24.2,<=2.4.6", + "numpy>=1.24.2,<=2.5.0", # License: MIT "tqdm", # License: MIT @@ -123,7 +123,7 @@ solr-orbitd = "solrorbit.benchmarkd:main" [project.optional-dependencies] test = [ "ujson", - "pytest==9.0.3", + "pytest==9.1.1", # Upgraded from 3.2.2: py.io.TerminalWriter was removed in py 1.11+, # making 3.x incompatible with Python 3.12. 4.0+ dropped the py dependency. "pytest-benchmark>=4.0.0", @@ -131,17 +131,17 @@ test = [ ] develop = [ "ujson", - "pytest==9.0.3", + "pytest==9.1.1", # Upgraded from 3.2.2: py.io.TerminalWriter was removed in py 1.11+, # making 3.x incompatible with Python 3.12. 4.0+ dropped the py dependency. "pytest-benchmark>=4.0.0", "pytest-asyncio==1.4.0", "tox>=4.0", - "coverage==7.14.1", + "coverage==7.14.3", "twine==6.2.0", "wheel>=0.38.4", "github3.py==4.0.1", - "ruff==0.15.15", + "ruff==0.15.20", ] # ---------------------------------------------------------------------------