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