From c6aac9fa2372d44db548db754f8f702f17e9c7b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 07:18:37 +0000 Subject: [PATCH] Bump the python-requirements group in /requirements with 8 updates Bumps the python-requirements group in /requirements with 8 updates: | Package | From | To | | --- | --- | --- | | [types-setuptools](https://github.com/python/typeshed) | `69.0.0.20240115` | `69.0.0.20240125` | | [pytest](https://github.com/pytest-dev/pytest) | `7.4.4` | `8.0.0` | | [pytest-sugar](https://github.com/Teemu/pytest-sugar) | `0.9.7` | `1.0.0` | | [pytest-selenium](https://github.com/pytest-dev/pytest-selenium) | `4.0.2` | `4.1.0` | | [coverage](https://github.com/nedbat/coveragepy) | `7.4.0` | `7.4.1` | | [ruff](https://github.com/astral-sh/ruff) | `0.1.14` | `0.2.0` | | [bandit](https://github.com/PyCQA/bandit) | `1.7.6` | `1.7.7` | | [sphinx-tabs](https://github.com/executablebooks/sphinx-tabs) | `3.4.4` | `3.4.5` | Updates `types-setuptools` from 69.0.0.20240115 to 69.0.0.20240125 - [Commits](https://github.com/python/typeshed/commits) Updates `pytest` from 7.4.4 to 8.0.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/7.4.4...8.0.0) Updates `pytest-sugar` from 0.9.7 to 1.0.0 - [Release notes](https://github.com/Teemu/pytest-sugar/releases) - [Changelog](https://github.com/Teemu/pytest-sugar/blob/main/CHANGES.rst) - [Commits](https://github.com/Teemu/pytest-sugar/compare/v0.9.7...v1.0.0) Updates `pytest-selenium` from 4.0.2 to 4.1.0 - [Changelog](https://github.com/pytest-dev/pytest-selenium/blob/master/docs/news.rst) - [Commits](https://github.com/pytest-dev/pytest-selenium/compare/4.0.2...4.1.0) Updates `coverage` from 7.4.0 to 7.4.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.4.0...7.4.1) Updates `ruff` from 0.1.14 to 0.2.0 - [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.1.14...v0.2.0) Updates `bandit` from 1.7.6 to 1.7.7 - [Release notes](https://github.com/PyCQA/bandit/releases) - [Commits](https://github.com/PyCQA/bandit/compare/1.7.6...1.7.7) Updates `sphinx-tabs` from 3.4.4 to 3.4.5 - [Release notes](https://github.com/executablebooks/sphinx-tabs/releases) - [Changelog](https://github.com/executablebooks/sphinx-tabs/blob/master/CHANGELOG.md) - [Commits](https://github.com/executablebooks/sphinx-tabs/compare/v3.4.4...v3.4.5) --- updated-dependencies: - dependency-name: types-setuptools dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-requirements - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-requirements - dependency-name: pytest-sugar dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-requirements - dependency-name: pytest-selenium dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-requirements - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-requirements - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-requirements - dependency-name: bandit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-requirements - dependency-name: sphinx-tabs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-requirements ... Signed-off-by: dependabot[bot] --- requirements/docs.txt | 2 +- requirements/security.txt | 2 +- requirements/style.txt | 2 +- requirements/tests.txt | 8 ++++---- requirements/typing.txt | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/requirements/docs.txt b/requirements/docs.txt index ae20fa5f..ecc553ab 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,7 +1,7 @@ # Documentation # ------------------------------------------------------------------------------ Sphinx==7.2.6 -sphinx-tabs==3.4.4 +sphinx-tabs==3.4.5 sphinx-issues==4.0.0 sphinxcontrib-log-cabinet==1.0.1 diff --git a/requirements/security.txt b/requirements/security.txt index 4312a226..41c3c466 100644 --- a/requirements/security.txt +++ b/requirements/security.txt @@ -1,4 +1,4 @@ # Security check # ------------------------------------------------------------------------------ -bandit==1.7.6;python_version>="3.11" # https://github.com/PyCQA/bandit +bandit==1.7.7;python_version>="3.11" # https://github.com/PyCQA/bandit safety==3.0.1;python_version>="3.11" # https://github.com/pyupio/safety diff --git a/requirements/style.txt b/requirements/style.txt index 8080abd5..5683fcd0 100644 --- a/requirements/style.txt +++ b/requirements/style.txt @@ -1,3 +1,3 @@ # Code formatter + Code quality + Code linter # ------------------------------------------------------------------------------ -ruff==0.1.14 # https://github.com/astral-sh/ruff +ruff==0.2.0 # https://github.com/astral-sh/ruff diff --git a/requirements/tests.txt b/requirements/tests.txt index 37c35b32..6d750036 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -1,11 +1,11 @@ # Testing # ------------------------------------------------------------------------------ -pytest==7.4.4 # https://github.com/pytest-dev/pytest +pytest==8.0.0 # https://github.com/pytest-dev/pytest pytest-cov==4.1.0 # https://github.com/pytest-dev/pytest-cov pytest-xdist==3.5.0 # https://github.com/pytest-dev/pytest-xdist -pytest-sugar==0.9.7 # https://github.com/Frozenball/pytest-sugar +pytest-sugar==1.0.0 # https://github.com/Frozenball/pytest-sugar pytest-env==1.1.3 # https://github.com/MobileDynasty/pytest-env -pytest-selenium==4.0.2 # https://github.com/pytest-dev/pytest-selenium +pytest-selenium==4.1.0 # https://github.com/pytest-dev/pytest-selenium # Type check # ------------------------------------------------------------------------------ @@ -13,7 +13,7 @@ typeguard==2.13.3 # https://github.com/agronholm/typeguard # Code quality # ------------------------------------------------------------------------------ -coverage==7.4.0 # https://github.com/nedbat/coveragepy +coverage==7.4.1 # https://github.com/nedbat/coveragepy # Tools # ------------------------------------------------------------------------------ diff --git a/requirements/typing.txt b/requirements/typing.txt index 401146be..0478109e 100644 --- a/requirements/typing.txt +++ b/requirements/typing.txt @@ -2,5 +2,5 @@ # ------------------------------------------------------------------------------ mypy==1.8.0;python_version>="3.11" # https://github.com/python/mypy pytype==2024.1.5;python_version>="3.11" and python_version<"3.12" # https://github.com/google/pytype -types_setuptools==69.0.0.20240115 # https://github.com/python/typeshed +types_setuptools==69.0.0.20240125 # https://github.com/python/typeshed typeguard==2.13.3 # https://github.com/agronholm/typeguard