Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#18)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.6.9 → v0.7.2](astral-sh/ruff-pre-commit@v0.6.9...v0.7.2)
- [github.com/psf/black-pre-commit-mirror: 24.8.0 → 24.10.0](psf/black-pre-commit-mirror@24.8.0...24.10.0)
- [github.com/tox-dev/pyproject-fmt: 2.2.4 → v2.5.0](tox-dev/pyproject-fmt@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] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] and github-actions[bot] authored Nov 13, 2024
1 parent 706e19f commit c132255
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
15 changes: 8 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c132255

Please sign in to comment.