From 473d8d3b59ba8f3a7a2f15b3bdf4e16f8f98c8f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 07:41:56 +0000 Subject: [PATCH] deps: bump the python-deps group across 1 directory with 10 updates Updates the requirements on [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/), [grimp](https://github.com/python-grimp/grimp), [django](https://github.com/django/django), [httpx](https://github.com/encode/httpx), [pytest](https://github.com/pytest-dev/pytest), [pytest-cov](https://github.com/pytest-dev/pytest-cov), [types-jsonschema](https://github.com/python/typeshed), [pytest-django](https://github.com/pytest-dev/pytest-django), [ruff](https://github.com/astral-sh/ruff) and [mypy](https://github.com/python/mypy) to permit the latest version. Updates `beautifulsoup4` to 4.14.3 Updates `grimp` to 3.14 - [Changelog](https://github.com/python-grimp/grimp/blob/main/CHANGELOG.rst) - [Commits](https://github.com/python-grimp/grimp/compare/v3.0...v3.14) Updates `django` to 5.2.14 - [Commits](https://github.com/django/django/compare/4.2...5.2.14) Updates `httpx` to 0.28.1 - [Release notes](https://github.com/encode/httpx/releases) - [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md) - [Commits](https://github.com/encode/httpx/compare/0.27.0...0.28.1) 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-cov` to 7.1.0 - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v6.0.0...v7.1.0) Updates `types-jsonschema` to 4.26.0.20260508 - [Commits](https://github.com/python/typeshed/commits) Updates `pytest-django` to 4.12.0 - [Release notes](https://github.com/pytest-dev/pytest-django/releases) - [Changelog](https://github.com/pytest-dev/pytest-django/blob/main/docs/changelog.rst) - [Commits](https://github.com/pytest-dev/pytest-django/compare/v4.8.0...v4.12.0) Updates `ruff` to 0.15.12 - [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.9...0.15.12) Updates `mypy` to 2.1.0 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.0.0...v2.1.0) --- updated-dependencies: - dependency-name: beautifulsoup4 dependency-version: 4.14.3 dependency-type: direct:production dependency-group: python-deps - dependency-name: grimp dependency-version: '3.14' dependency-type: direct:production dependency-group: python-deps - dependency-name: django dependency-version: 5.2.14 dependency-type: direct:production dependency-group: python-deps - dependency-name: httpx dependency-version: 0.28.1 dependency-type: direct:development dependency-group: python-deps - dependency-name: pytest dependency-version: 9.0.3 dependency-type: direct:development dependency-group: python-deps - dependency-name: pytest-cov dependency-version: 7.1.0 dependency-type: direct:development dependency-group: python-deps - dependency-name: types-jsonschema dependency-version: 4.26.0.20260508 dependency-type: direct:development dependency-group: python-deps - dependency-name: pytest-django dependency-version: 4.12.0 dependency-type: direct:development dependency-group: python-deps - dependency-name: ruff dependency-version: 0.15.12 dependency-type: direct:development dependency-group: python-deps - dependency-name: mypy dependency-version: 2.1.0 dependency-type: direct:development dependency-group: python-deps ... Signed-off-by: dependabot[bot] --- pyproject.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3c9def3..edf7194 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,15 +30,15 @@ classifiers = [ ] dependencies = [ - "beautifulsoup4>=4.12", - "grimp>=3.0", + "beautifulsoup4>=4.14.3", + "grimp>=3.14", "jsonschema>=4.26.0", "typing_extensions>=4.0; python_version < '3.11'", ] [project.optional-dependencies] django = ["Django>=4.2"] -httpx = ["httpx>=0.27"] +httpx = ["httpx>=0.28.1"] [project.urls] Homepage = "https://github.com/othercodes/pyssertive" @@ -61,24 +61,24 @@ packages = ["src/pyssertive"] [dependency-groups] test-core = [ - "pytest>=8.0.0", - "pytest-cov>=6.0.0", - "types-jsonschema>=4.0", + "pytest>=9.0.3", + "pytest-cov>=7.1.0", + "types-jsonschema>=4.26.0.20260508", ] test-django = [ {include-group = "test-core"}, - "pytest-django>=4.8.0", + "pytest-django>=4.12.0", "django-stubs>=6.0.4", ] test-httpx = [ {include-group = "test-core"}, - "httpx>=0.27", + "httpx>=0.28.1", ] dev = [ {include-group = "test-django"}, {include-group = "test-httpx"}, - "ruff>=0.15.9", - "mypy>=1.0.0", + "ruff>=0.15.12", + "mypy>=2.1.0", ] [tool.ruff]