mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Update dependencies, pre-commit config
This commit is contained in:
parent
8da2286389
commit
e4d5318b3f
3 changed files with 166 additions and 507 deletions
|
|
@ -4,12 +4,18 @@ repos:
|
|||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.2.0
|
||||
hooks:
|
||||
- id: end-of-file-fixer
|
||||
- id: trailing-whitespace
|
||||
- id: check-merge-conflict
|
||||
- id: "trailing-whitespace"
|
||||
- id: "check-case-conflict"
|
||||
- id: "check-merge-conflict"
|
||||
- id: "debug-statements"
|
||||
- id: "end-of-file-fixer"
|
||||
- id: "mixed-line-ending"
|
||||
- id: "check-yaml"
|
||||
- id: "detect-private-key"
|
||||
- id: "check-toml"
|
||||
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 22.3.0
|
||||
rev: 22.6.0
|
||||
hooks:
|
||||
- id: black
|
||||
files: &files '^(aiogram|tests|examples)'
|
||||
|
|
@ -20,9 +26,15 @@ repos:
|
|||
- id: isort
|
||||
additional_dependencies: [ toml ]
|
||||
files: *files
|
||||
|
||||
- repo: https://gitlab.com/pycqa/flake8
|
||||
rev: 3.9.2
|
||||
hooks:
|
||||
- id: flake8
|
||||
args: [ '--config=.flake8' ]
|
||||
files: *files
|
||||
|
||||
- repo: https://github.com/floatingpurr/sync_with_poetry
|
||||
rev: 0.2.0
|
||||
hooks:
|
||||
- id: sync_with_poetry
|
||||
|
|
|
|||
621
poetry.lock
generated
621
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -37,9 +37,9 @@ classifiers = [
|
|||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.8"
|
||||
magic-filter = "^1.0.7"
|
||||
magic-filter = "^1.0.8"
|
||||
aiohttp = "^3.8.1"
|
||||
pydantic = "^1.9.1"
|
||||
pydantic = "^1.9.2"
|
||||
aiofiles = "^0.8.0"
|
||||
# Fast
|
||||
uvloop = { version = "^0.16.0", markers = "sys_platform == 'darwin' or sys_platform == 'linux'", optional = true }
|
||||
|
|
@ -48,41 +48,41 @@ Babel = { version = "^2.9.1", optional = true }
|
|||
# Proxy
|
||||
aiohttp-socks = { version = "^0.7.1", optional = true }
|
||||
# Redis
|
||||
redis = {version = "^4.3.3", optional = true}
|
||||
redis = { version = "^4.3.4", optional = true }
|
||||
# Docs
|
||||
Sphinx = { version = "^4.2.0", optional = true }
|
||||
sphinx-intl = {version = "^2.0.1", optional = true}
|
||||
sphinx-intl = { version = "^2.0.1", optional = true }
|
||||
sphinx-autobuild = { version = "^2021.3.14", optional = true }
|
||||
sphinx-copybutton = { version = "^0.5.0", optional = true }
|
||||
furo = {version = "^2022.6.21", optional = true}
|
||||
furo = { version = "^2022.6.21", optional = true }
|
||||
sphinx-prompt = { version = "^1.5.0", optional = true }
|
||||
Sphinx-Substitution-Extensions = { version = "^2020.9.30", optional = true }
|
||||
towncrier = { version = "^21.9.0", optional = true }
|
||||
pygments = { version = "^2.4", optional = true }
|
||||
pymdown-extensions = {version = "^9.5", optional = true}
|
||||
markdown-include = { version = "^0.6", optional = true }
|
||||
Pygments = {version = "^2.12.0", optional = true}
|
||||
pymdown-extensions = { version = "^9.5", optional = true }
|
||||
markdown-include = { version = "^0.7.0", optional = true }
|
||||
Pygments = { version = "^2.12.0", optional = true }
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
black = "^22.1.0"
|
||||
black = "^22.6.0"
|
||||
isort = "^5.10.1"
|
||||
flake8 = "^4.0.1"
|
||||
mypy = "^0.961"
|
||||
flake8 = "^5.0.4"
|
||||
mypy = "^0.971"
|
||||
pytest = "^7.1.2"
|
||||
pytest-html = "^3.1.1"
|
||||
pytest-asyncio = "^0.18.1"
|
||||
pytest-asyncio = "^0.19.0"
|
||||
pytest-lazy-fixture = "^0.6.3"
|
||||
pytest-mock = "^3.8.1"
|
||||
pytest-mock = "^3.8.2"
|
||||
pytest-mypy = "^0.9.1"
|
||||
pytest-cov = "^3.0.0"
|
||||
pytest-aiohttp = "^1.0.4"
|
||||
aresponses = "^2.1.5"
|
||||
aresponses = "^2.1.6"
|
||||
asynctest = "^0.13.0"
|
||||
toml = "^0.10.2"
|
||||
|
||||
pre-commit = "^2.19.0"
|
||||
pre-commit = "^2.20.0"
|
||||
packaging = "^21.3"
|
||||
typing-extensions = "^4.2.0"
|
||||
typing-extensions = "^4.3.0"
|
||||
|
||||
|
||||
[tool.poetry.extras]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue