From 25374b8fb8fabf9995fded7f7d157eb52145bd9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 14:49:09 +0000 Subject: [PATCH] Bump the python-requirements group across 1 directory with 8 updates Bumps the python-requirements group with 8 updates in the /requirements directory: | Package | From | To | | --- | --- | --- | | [ruff](https://github.com/astral-sh/ruff) | `0.4.3` | `0.6.5` | | [pytest](https://github.com/pytest-dev/pytest) | `8.2.0` | `8.3.3` | | [pytest-env](https://github.com/pytest-dev/pytest-env) | `1.1.3` | `1.1.4` | | [coverage](https://github.com/nedbat/coveragepy) | `7.5.1` | `7.6.1` | | [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.3` | | [mypy](https://github.com/python/mypy) | `1.10.0` | `1.11.2` | | [types-setuptools](https://github.com/python/typeshed) | `69.5.0.20240423` | `75.1.0.20240917` | | [gunicorn](https://github.com/benoitc/gunicorn) | `22` | `23.0.0` | Updates `ruff` from 0.4.3 to 0.6.5 - [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.3...0.6.5) Updates `pytest` from 8.2.0 to 8.3.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.2.0...8.3.3) Updates `pytest-env` from 1.1.3 to 1.1.4 - [Release notes](https://github.com/pytest-dev/pytest-env/releases) - [Commits](https://github.com/pytest-dev/pytest-env/compare/1.1.3...1.1.4) Updates `coverage` from 7.5.1 to 7.6.1 - [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.6.1) Updates `requests` from 2.31.0 to 2.32.3 - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.31.0...v2.32.3) Updates `mypy` from 1.10.0 to 1.11.2 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.10.0...v1.11.2) Updates `types-setuptools` from 69.5.0.20240423 to 75.1.0.20240917 - [Commits](https://github.com/python/typeshed/commits) Updates `gunicorn` from 22 to 23.0.0 - [Release notes](https://github.com/benoitc/gunicorn/releases) - [Commits](https://github.com/benoitc/gunicorn/compare/22.0.0...23.0.0) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-requirements - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-requirements - dependency-name: pytest-env dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-requirements - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-requirements - dependency-name: requests dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-requirements - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-requirements - dependency-name: types-setuptools dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-requirements - dependency-name: gunicorn dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-requirements ... Signed-off-by: dependabot[bot] --- requirements/production.txt | 2 +- requirements/style.txt | 2 +- requirements/tests.txt | 8 ++++---- requirements/typing.txt | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/requirements/production.txt b/requirements/production.txt index 96c7afe..b65cdb0 100644 --- a/requirements/production.txt +++ b/requirements/production.txt @@ -4,4 +4,4 @@ # WSGI HTTP Server # ------------------------------------------------------------------------------ -gunicorn==22 # https://github.com/benoitc/gunicorn +gunicorn==23.0.0 # https://github.com/benoitc/gunicorn diff --git a/requirements/style.txt b/requirements/style.txt index 1ffb329..6dd8f20 100644 --- a/requirements/style.txt +++ b/requirements/style.txt @@ -1,3 +1,3 @@ # Code formatter + Code quality + Code linter # ------------------------------------------------------------------------------ -ruff==0.4.3 # https://github.com/astral-sh/ruff +ruff==0.6.5 # https://github.com/astral-sh/ruff diff --git a/requirements/tests.txt b/requirements/tests.txt index 7668a1f..73330e1 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -1,10 +1,10 @@ # Testing # ------------------------------------------------------------------------------ -pytest==8.2.0 # https://github.com/pytest-dev/pytest +pytest==8.3.3 # https://github.com/pytest-dev/pytest pytest-cov==5.0.0 # https://github.com/pytest-dev/pytest-cov pytest-xdist==3.6.1 # https://github.com/pytest-dev/pytest-xdist pytest-sugar==1.0.0 # https://github.com/Frozenball/pytest-sugar -pytest-env==1.1.3 # https://github.com/MobileDynasty/pytest-env +pytest-env==1.1.4 # https://github.com/MobileDynasty/pytest-env pytest-selenium==4.1.0 # https://github.com/pytest-dev/pytest-selenium # Type check @@ -13,8 +13,8 @@ typeguard==2.13.3 # https://github.com/agronholm/typeguard # Code quality # ------------------------------------------------------------------------------ -coverage==7.5.1 # https://github.com/nedbat/coveragepy +coverage==7.6.1 # https://github.com/nedbat/coveragepy # Tools # ------------------------------------------------------------------------------ -requests==2.31.0 # https://github.com/psf/requests +requests==2.32.3 # https://github.com/psf/requests diff --git a/requirements/typing.txt b/requirements/typing.txt index 0ac9d21..c4d54ef 100644 --- a/requirements/typing.txt +++ b/requirements/typing.txt @@ -1,5 +1,5 @@ # Type check # ------------------------------------------------------------------------------ -mypy==1.10.0;python_version>="3.11" # https://github.com/python/mypy -types_setuptools==69.5.0.20240423 # https://github.com/python/typeshed +mypy==1.11.2;python_version>="3.11" # https://github.com/python/mypy +types_setuptools==75.1.0.20240917 # https://github.com/python/typeshed typeguard==2.13.3 # https://github.com/agronholm/typeguard