From c1322559c901bd4b4e4e1db07c2041f8b584f2f6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 13 Nov 2024 10:59:07 +0900 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate (#18) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.9 → v0.7.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.6.9...v0.7.2) - [github.com/psf/black-pre-commit-mirror: 24.8.0 → 24.10.0](https://github.com/psf/black-pre-commit-mirror/compare/24.8.0...24.10.0) - [github.com/tox-dev/pyproject-fmt: 2.2.4 → v2.5.0](https://github.com/tox-dev/pyproject-fmt/compare/2.2.4...v2.5.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * [GHA] Update requirements.txt on pyproject.toml changed --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] --- .pre-commit-config.yaml | 6 +++--- pyproject.toml | 15 ++++++++------- requirements.txt | 14 +++++++------- 3 files changed, 18 insertions(+), 17 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bcde8c0..3e35c60 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,13 +5,13 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.9 + rev: v0.7.2 hooks: - id: ruff args: [--fix] # Using this mirror lets us use mypyc-compiled black, which is about 2x faster - repo: https://github.com/psf/black-pre-commit-mirror - rev: 24.8.0 + rev: 24.10.0 hooks: - id: black # It is recommended to specify the latest version of Python @@ -20,7 +20,7 @@ repos: # https://pre-commit.com/#top_level-default_language_version language_version: python3.11 - repo: https://github.com/tox-dev/pyproject-fmt - rev: "2.2.4" + rev: "v2.5.0" hooks: - id: pyproject-fmt # https://pyproject-fmt.readthedocs.io/en/latest/#calculating-max-supported-python-version diff --git a/pyproject.toml b/pyproject.toml index b5c1786..9e85ebd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,18 +20,19 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] dynamic = [ "version", ] dependencies = [ - "aiohttp<3.11,>=3.10.2", - "awsiot-credentialhelper<0.7,>=0.6", - "boto3<1.35,>=1.34.35", - "botocore<1.35,==1.34.35", - "pydantic<3,>=2.6", - "pydantic-settings<3,>=2.2.1", - "pyyaml<7,>=6.0.1", + "aiohttp>=3.10.2,<3.11", + "awsiot-credentialhelper>=0.6,<0.7", + "boto3>=1.34.35,<1.35", + "botocore==1.34.35,<1.35", + "pydantic>=2.6,<3", + "pydantic-settings>=2.2.1,<3", + "pyyaml>=6.0.1,<7", "typing-extensions>=4", ] optional-dependencies.dev = [ diff --git a/requirements.txt b/requirements.txt index a71f720..838a0f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ # Automatically generated from pyproject.toml by gen_requirements_txt.py script. # DO NOT EDIT! Only for reference use. -aiohttp<3.11,>=3.10.2 -awsiot-credentialhelper<0.7,>=0.6 -boto3<1.35,>=1.34.35 -botocore<1.35,==1.34.35 -pydantic<3,>=2.6 -pydantic-settings<3,>=2.2.1 -pyyaml<7,>=6.0.1 +aiohttp>=3.10.2,<3.11 +awsiot-credentialhelper>=0.6,<0.7 +boto3>=1.34.35,<1.35 +botocore==1.34.35,<1.35 +pydantic>=2.6,<3 +pydantic-settings>=2.2.1,<3 +pyyaml>=6.0.1,<7 typing-extensions>=4