From 9a71dc4703e1d2b75138717f6e2389841fe432d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 19 May 2024 16:08:15 -0500 Subject: [PATCH] Bump the python-dependencies group with 7 updates (#9) * Bump the python-dependencies group with 7 updates Bumps the python-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [furo](https://github.com/pradyunsg/furo) | `2024.1.29` | `2024.4.27` | | [sphinx](https://github.com/sphinx-doc/sphinx) | `7.2.6` | `7.3.7` | | [mypy](https://github.com/python/mypy) | `1.9.0` | `1.10.0` | | [ruff](https://github.com/astral-sh/ruff) | `0.3.5` | `0.4.2` | | [pytest](https://github.com/pytest-dev/pytest) | `8.1.1` | `8.2.0` | | [fastapi](https://github.com/tiangolo/fastapi) | `0.110.1` | `0.110.3` | | [sentry-sdk[fastapi]](https://github.com/getsentry/sentry-python) | `1.44.1` | `2.0.1` | Updates `furo` from 2024.1.29 to 2024.4.27 - [Release notes](https://github.com/pradyunsg/furo/releases) - [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md) - [Commits](https://github.com/pradyunsg/furo/compare/2024.01.29...2024.04.27) Updates `sphinx` from 7.2.6 to 7.3.7 - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst) - [Commits](https://github.com/sphinx-doc/sphinx/compare/v7.2.6...v7.3.7) Updates `mypy` from 1.9.0 to 1.10.0 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/1.9.0...v1.10.0) Updates `ruff` from 0.3.5 to 0.4.2 - [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.3.5...v0.4.2) Updates `pytest` from 8.1.1 to 8.2.0 - [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.1.1...8.2.0) Updates `fastapi` from 0.110.1 to 0.110.3 - [Release notes](https://github.com/tiangolo/fastapi/releases) - [Commits](https://github.com/tiangolo/fastapi/compare/0.110.1...0.110.3) Updates `sentry-sdk[fastapi]` from 1.44.1 to 2.0.1 - [Release notes](https://github.com/getsentry/sentry-python/releases) - [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-python/compare/1.44.1...2.0.1) --- updated-dependencies: - dependency-name: furo dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: sphinx dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: fastapi dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-dependencies - dependency-name: sentry-sdk[fastapi] dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-dependencies ... Signed-off-by: dependabot[bot] * Ignore RUF029 "async function doesn't use async features" All routes are async Signed-off-by: Bradley Reynolds --------- Signed-off-by: dependabot[bot] Signed-off-by: Bradley Reynolds Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bradley Reynolds --- pyproject.toml | 1 + requirements/requirements-dev.txt | 4 ++-- requirements/requirements-docs.txt | 4 ++-- requirements/requirements-tests.txt | 4 ++-- requirements/requirements.txt | 4 ++-- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8182d4b..dc93859 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,7 @@ select = [ ] ignore = [ "CPY001", # (Missing copyright notice at top of file) - No license + "RUF029", # (Function `` is declared `async`, but doesn't `await` or use `async` features.) - all routes are async ] [tool.ruff.lint.extend-per-file-ignores] diff --git a/requirements/requirements-dev.txt b/requirements/requirements-dev.txt index 55776fa..dc395ea 100644 --- a/requirements/requirements-dev.txt +++ b/requirements/requirements-dev.txt @@ -18,7 +18,7 @@ filelock==3.13.3 # via virtualenv identify==2.5.35 # via pre-commit -mypy==1.9.0 +mypy==1.10.0 # via -r requirements/requirements-dev.in mypy-extensions==1.0.0 # via mypy @@ -40,7 +40,7 @@ pyyaml==6.0.1 # via # -c requirements/requirements.txt # pre-commit -ruff==0.3.5 +ruff==0.4.2 # via -r requirements/requirements-dev.in typing-extensions==4.10.0 # via diff --git a/requirements/requirements-docs.txt b/requirements/requirements-docs.txt index 44d0a69..733ba32 100644 --- a/requirements/requirements-docs.txt +++ b/requirements/requirements-docs.txt @@ -22,7 +22,7 @@ charset-normalizer==3.3.2 # via requests docutils==0.20.1 # via sphinx -furo==2024.1.29 +furo==2024.4.27 # via -r requirements/requirements-docs.in idna==3.6 # via @@ -56,7 +56,7 @@ snowballstemmer==2.2.0 # via sphinx soupsieve==2.5 # via beautifulsoup4 -sphinx==7.2.6 +sphinx==7.3.7 # via # -r requirements/requirements-docs.in # furo diff --git a/requirements/requirements-tests.txt b/requirements/requirements-tests.txt index 2ad1cb1..7317a50 100644 --- a/requirements/requirements-tests.txt +++ b/requirements/requirements-tests.txt @@ -30,9 +30,9 @@ iniconfig==2.0.0 # via pytest packaging==24.0 # via pytest -pluggy==1.4.0 +pluggy==1.5.0 # via pytest -pytest==8.1.1 +pytest==8.2.0 # via # -r requirements/requirements-tests.in # pytest-randomly diff --git a/requirements/requirements.txt b/requirements/requirements.txt index 41ea5b3..65367fc 100644 --- a/requirements/requirements.txt +++ b/requirements/requirements.txt @@ -14,7 +14,7 @@ certifi==2024.2.2 # via sentry-sdk click==8.1.7 # via uvicorn -fastapi==0.110.1 +fastapi==0.110.3 # via # -r requirements/requirements.in # sentry-sdk @@ -38,7 +38,7 @@ python-dotenv==1.0.1 # uvicorn pyyaml==6.0.1 # via uvicorn -sentry-sdk[fastapi]==1.44.1 +sentry-sdk[fastapi]==2.0.1 # via -r requirements/requirements.in sniffio==1.3.1 # via anyio