From 7b57841bf08025243ea63a330224ec8f9558c281 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 13:38:12 +0000 Subject: [PATCH] Bump the python-packages group across 1 directory with 6 updates Bumps the python-packages group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [uvicorn](https://github.com/encode/uvicorn) | `0.29.0` | `0.30.1` | | [coverage](https://github.com/nedbat/coveragepy) | `7.5.1` | `7.5.3` | | [pytest](https://github.com/pytest-dev/pytest) | `8.2.0` | `8.2.1` | | [ruff](https://github.com/astral-sh/ruff) | `0.4.4` | `0.4.7` | | [types-ujson](https://github.com/python/typeshed) | `5.9.0.0` | `5.10.0.20240515` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.23.6` | `0.23.7` | Updates `uvicorn` from 0.29.0 to 0.30.1 - [Release notes](https://github.com/encode/uvicorn/releases) - [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md) - [Commits](https://github.com/encode/uvicorn/compare/0.29.0...0.30.1) Updates `coverage` from 7.5.1 to 7.5.3 - [Release notes](https://github.com/nedbat/coveragepy/releases) - [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) - [Commits](https://github.com/nedbat/coveragepy/compare/7.5.1...7.5.3) Updates `pytest` from 8.2.0 to 8.2.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/8.2.0...8.2.1) Updates `ruff` from 0.4.4 to 0.4.7 - [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/v0.4.4...v0.4.7) Updates `types-ujson` from 5.9.0.0 to 5.10.0.20240515 - [Commits](https://github.com/python/typeshed/commits) Updates `pytest-asyncio` from 0.23.6 to 0.23.7 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v0.23.6...v0.23.7) --- updated-dependencies: - dependency-name: uvicorn dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages - dependency-name: types-ujson dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: pytest-asyncio dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages ... Signed-off-by: dependabot[bot] --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d0c2340..14e53df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ classifiers = [ readme = { file = "./README.md", content-type = "text/markdown" } dependencies = [ "fastapi[all] == 0.111.0", - "uvicorn == 0.29.0", + "uvicorn == 0.30.1", "pyyaml == 6.0.1", "geojson_pydantic == 1.1.0", "pyproj == 3.6.1", @@ -25,13 +25,13 @@ dynamic = ["version"] [project.optional-dependencies] dev = [ "black == 24.4.2", - "coverage == 7.5.1", + "coverage == 7.5.3", "mypy == 1.10.0", - "pytest == 8.2.0", - "ruff == 0.4.4", - "types-ujson == 5.9.0.0", + "pytest == 8.2.1", + "ruff == 0.4.7", + "types-ujson == 5.10.0.20240515", "types-PyYAML == 6.0.12.20240311", - "pytest-asyncio == 0.23.6", + "pytest-asyncio == 0.23.7", ] [build-system]