Skip to content

Commit

Permalink
⬆️ poetry, pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwoerpel committed Nov 12, 2023
1 parent 3f1cd80 commit 3631370
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# * Run "pre-commit install".
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -20,7 +20,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/asottile/pyupgrade
rev: v3.10.1
rev: v3.15.0
hooks:
- id: pyupgrade
args: [ "--py310-plus" ]
Expand All @@ -37,20 +37,20 @@ repos:
args: ["--profile", "black"]

- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.11.0
hooks:
- id: black

- repo: https://github.com/csachs/pyproject-flake8
rev: v6.0.0.post1
rev: v6.1.0
hooks:
- id: pyproject-flake8
additional_dependencies: [ flake8-bugbear ]
args: [ "--extend-ignore", "E203, E501, B008" ]
exclude: (test_[\w]+\.py)$

- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
rev: v2.2.6
hooks:
- id: codespell
exclude: (test_[\w]+\.py|\.csv|\.json|\.lock)$
Expand All @@ -68,7 +68,7 @@ repos:
- id: rst-inline-touching-normal

- repo: https://github.com/python-poetry/poetry
rev: 1.6.1
rev: 1.7.0
hooks:
- id: poetry-check
- id: poetry-lock
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ cachelib = "^0.10.2"
fastapi = {extras = ["all"], version = "^0.104.1"}
furl = "^2.1.3"
redis = "^5.0.1"
pyicu = "^2.11"
pyicu = "^2.12"
ftmq = "^0.5.0"
structlog = "^23.2.0"
fakeredis = "^2.20.0"

[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
black = "^23.7.0"
black = "^23.11.0"
pre-commit = "^3.5.0"
ipdb = "^0.13.13"
isort = "^5.12.0"
pytest = "^7.4.0"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
pytest-env = "^1.0.1"
mypy = "^1.6.0"
pytest-env = "^1.1.1"
mypy = "^1.7.0"
coverage = "^7.3.2"
bump2version = "^1.0.1"

Expand Down

0 comments on commit 3631370

Please sign in to comment.