From d75c856e9253ce904a5673b9b3219bff04db4427 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 13:27:51 +0000 Subject: [PATCH] deps(python): bump the python-deps group in /python with 3 updates Updates the requirements on [nats-py](https://github.com/nats-io/nats.py), [pytest](https://github.com/pytest-dev/pytest) and [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) to permit the latest version. Updates `nats-py` to 2.14.0 - [Release notes](https://github.com/nats-io/nats.py/releases) - [Commits](https://github.com/nats-io/nats.py/compare/v2.6.0...v2.14.0) Updates `pytest` to 9.0.3 - [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/8.0.0...9.0.3) Updates `pytest-asyncio` to 1.3.0 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v0.23.0...v1.3.0) --- updated-dependencies: - dependency-name: nats-py dependency-version: 2.14.0 dependency-type: direct:production dependency-group: python-deps - dependency-name: pytest dependency-version: 9.0.3 dependency-type: direct:development dependency-group: python-deps - dependency-name: pytest-asyncio dependency-version: 1.3.0 dependency-type: direct:development dependency-group: python-deps ... Signed-off-by: dependabot[bot] --- python/pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index a972555..2dd5012 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -10,13 +10,13 @@ readme = "README.md" license = { text = "Apache-2.0" } requires-python = ">=3.10" dependencies = [ - "nats-py>=2.6.0", + "nats-py>=2.14.0", ] [project.optional-dependencies] dev = [ - "pytest>=8.0", - "pytest-asyncio>=0.23", + "pytest>=9.0.3", + "pytest-asyncio>=1.3.0", ] [tool.pytest.ini_options]