Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSuperiorStanislav committed Jan 25, 2024
1 parent 2da70b7 commit 46025a6
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 53 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ repos:
args: ["--lock"]

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
name: isort (python)

- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
exclude: .venv|__init__.py
Expand Down Expand Up @@ -61,7 +61,7 @@ repos:
- id: add-trailing-comma

- repo: https://github.com/psf/black
rev: 23.11.0
rev: 23.12.1
hooks:
- id: black
language_version: python3
Expand Down
79 changes: 35 additions & 44 deletions poetry.lock

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

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ env_settings = ["python-decouple"]
[tool.poetry.group.dev.dependencies]
# Improved REPL
ipdb = "^0.13.13"
ipython = "^8.18.1"
ipython = "^8.20.0"
# A framework for managing and maintaining multi-language pre-commit hooks.
# https://pre-commit.com/
pre-commit = "^3.5.0"
pre-commit = "^3.6.0"

[tool.poetry.group.linters.dependencies]
# Flake dependencies are added so that VSCode extension for flake8
# would work properly
# https://marketplace.visualstudio.com/items?itemName=ms-python.flake8&ssr=false#overview
flake8 = ">=6.1,<8.0"
flake8 = "^7.0.0"
# A plugin for Flake8 finding likely bugs and design problems in your program.
# https://github.com/PyCQA/flake8-bugbear
flake8-bugbear = ">=23.11.28,<25.0.0"
flake8-bugbear = "^24.1.17"
# A flake8 plugin that warn about backslashes usage.
# https://github.com/wemake-services/flake8-broken-line
flake8-broken-line = "^1.0.0"
Expand All @@ -75,14 +75,14 @@ flake8-docstrings = "^1.7.0"
flake8-pyproject = "^1.2.3"
# flake8 plugin to validate type annotations accoring to modern practices.
# https://github.com/plinss/flake8-modern-annotations
flake8-modern-annotations = "^1.5.0"
flake8-modern-annotations = "^1.6.0"
# McCabe complexity checker.
# https://github.com/PyCQA/mccabe
mccabe = "^0.7.0"

# Mypy is a static type checker for Python.
# https://mypy.readthedocs.io/en/stable/
mypy = "^1.7.1"
mypy = "^1.8.0"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 46025a6

Please sign in to comment.