From 0137d0ec9af788d4ca93f62bab42fe17faedc6a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 17:05:47 +0000 Subject: [PATCH] Bump the python-packages group with 8 updates Bumps the python-packages group with 8 updates: | Package | From | To | | --- | --- | --- | | [psycopg2](https://github.com/psycopg/psycopg2) | `2.9.6` | `2.9.9` | | [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.13` | `2.0.28` | | [black](https://github.com/psf/black) | `23.10.1` | `24.2.0` | | [pytest](https://github.com/pytest-dev/pytest) | `7.4.2` | `8.1.1` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.21.0` | `0.23.5.post1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.0.2` | `3.1.0` | | [mypy](https://github.com/python/mypy) | `1.6.0` | `1.9.0` | | [types-pyyaml](https://github.com/python/typeshed) | `6.0.12.12` | `6.0.12.20240311` | Updates `psycopg2` from 2.9.6 to 2.9.9 - [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS) - [Commits](https://github.com/psycopg/psycopg2/compare/2.9.6...2.9.9) Updates `sqlalchemy` from 2.0.13 to 2.0.28 - [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases) - [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst) - [Commits](https://github.com/sqlalchemy/sqlalchemy/commits) Updates `black` from 23.10.1 to 24.2.0 - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/23.10.1...24.2.0) Updates `pytest` from 7.4.2 to 8.1.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/7.4.2...8.1.1) Updates `pytest-asyncio` from 0.21.0 to 0.23.5.post1 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v0.21.0...v0.23.5.post1) Updates `pylint` from 3.0.2 to 3.1.0 - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.0.2...v3.1.0) Updates `mypy` from 1.6.0 to 1.9.0 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.6.0...1.9.0) Updates `types-pyyaml` from 6.0.12.12 to 6.0.12.20240311 - [Commits](https://github.com/python/typeshed/commits) --- updated-dependencies: - dependency-name: psycopg2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages - dependency-name: sqlalchemy dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages - dependency-name: black dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-packages - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-packages - dependency-name: pytest-asyncio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: types-pyyaml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages ... Signed-off-by: dependabot[bot] --- pyproject.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 71fb8f3..5e8c976 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,8 @@ readme = "README.md" version = "0.0.1" dependencies = [ "pika==1.3.2", - "psycopg2==2.9.6", - "SQLAlchemy==2.0.13", + "psycopg2==2.9.9", + "SQLAlchemy==2.0.28", ] [project.urls] @@ -22,19 +22,19 @@ operator = [ ] formatting = [ - "black==23.10.1" + "black==24.2.0" ] test = [ - "pytest==7.4.2", + "pytest==8.1.1", "pytest-cov==4.1.0", - "pytest-asyncio==0.21.0" + "pytest-asyncio==0.23.5.post1" ] code-inspection = [ - "pylint==3.0.2", - "mypy==1.6.0", - "types-PyYAML==6.0.12.12", + "pylint==3.1.0", + "mypy==1.9.0", + "types-PyYAML==6.0.12.20240311", "file_watcher[test]", "file_watcher[operator]" ]