mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
[3.0] Bot API 5.1 + FSM + Utils (#525)
* Regenerate corresponding to Bot API 5.1 * Added base of FSM. Markup constructor and small refactoring * Fix dependencies * Fix mypy windows error * Move StatesGroup.get_root() from meta to class * Fixed chat and user constraints * Update pipeline * Remove docs pipeline * Added GLOBAL_USER FSM strategy * Reformat code * Fixed Dispatcher._process_update * Bump Bot API 5.2. Added integration with MagicFilter * Coverage
This commit is contained in:
parent
a6f824a117
commit
0e72d8e65b
265 changed files with 2921 additions and 1324 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "aiogram"
|
||||
version = "3.0.0-alpha.6"
|
||||
version = "3.0.0-alpha.7"
|
||||
description = "Modern and fully asynchronous framework for Telegram Bot API"
|
||||
authors = ["Alex Root Junior <jroot.junior@gmail.com>"]
|
||||
license = "MIT"
|
||||
|
|
@ -33,15 +33,14 @@ classifiers = [
|
|||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.7"
|
||||
aiohttp = "^3.6"
|
||||
pydantic = "^1.5"
|
||||
Babel = "^2.7"
|
||||
aiohttp = "^3.7.4"
|
||||
pydantic = "^1.8.1"
|
||||
Babel = "^2.9.1"
|
||||
aiofiles = "^0.6.0"
|
||||
uvloop = { version = "^0.14.0", markers = "sys_platform == 'darwin' or sys_platform == 'linux'", optional = true }
|
||||
async_lru = "^1.0"
|
||||
async_lru = "^1.0.2"
|
||||
aiohttp-socks = { version = "^0.5.5", optional = true }
|
||||
typing-extensions = { version = "^3.7.4", python = "<3.8" }
|
||||
magic-filter = "^0.1.2"
|
||||
magic-filter = {version = "1.0.0a1", allow-prereleases = true}
|
||||
sphinx = { version = "^3.1.0", optional = true }
|
||||
sphinx-intl = { version = "^2.0.1", optional = true }
|
||||
sphinx-autobuild = { version = "^2020.9.1", optional = true }
|
||||
|
|
@ -51,28 +50,26 @@ sphinx-prompt = { version = "^1.3.0", optional = true }
|
|||
Sphinx-Substitution-Extensions = { version = "^2020.9.30", optional = true }
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
uvloop = { version = "^0.14.0", markers = "sys_platform == 'darwin' or sys_platform == 'linux'" }
|
||||
pytest = "^6.1"
|
||||
pytest-html = "^3.1"
|
||||
pytest-asyncio = "^0.14.0"
|
||||
pytest-mypy = "^0.8"
|
||||
pytest-mock = "^3.3"
|
||||
pytest-cov = "^2.8"
|
||||
aresponses = "^2.0"
|
||||
asynctest = { version = "^0.13.0", python = "<3.8" }
|
||||
isort = "^5.6"
|
||||
flake8 = "^3.7"
|
||||
flake8-html = "^0.4.0"
|
||||
mypy = "^0.800"
|
||||
mkdocs = "^1.0"
|
||||
mkdocs-material = "^6.1"
|
||||
mkautodoc = "^0.1.0"
|
||||
aiohttp-socks = "^0.5"
|
||||
ipython = "^7.22.0"
|
||||
uvloop = { version = "^0.15.2", markers = "sys_platform == 'darwin' or sys_platform == 'linux'" }
|
||||
black = "^21.4b2"
|
||||
isort = "^5.8.0"
|
||||
flake8 = "^3.9.1"
|
||||
flake8-html = "^0.4.1"
|
||||
mypy = "^0.812"
|
||||
pytest = "^6.2.3"
|
||||
pytest-html = "^3.1.1"
|
||||
pytest-asyncio = "^0.15.1"
|
||||
pytest-mypy = "^0.8.1"
|
||||
pytest-mock = "^3.6.0"
|
||||
pytest-cov = "^2.11.1"
|
||||
aresponses = "^2.1.4"
|
||||
asynctest = "^0.13.0"
|
||||
toml = "^0.10.2"
|
||||
pygments = "^2.4"
|
||||
pymdown-extensions = "^8.0"
|
||||
lxml = "^4.4"
|
||||
ipython = "^7.10"
|
||||
markdown-include = "^0.6"
|
||||
aiohttp-socks = "^0.5"
|
||||
pre-commit = "^2.3.0"
|
||||
packaging = "^20.3"
|
||||
typing-extensions = "^3.7.4"
|
||||
|
|
@ -83,8 +80,6 @@ sphinx-copybutton = "^0.3.1"
|
|||
furo = "^2020.11.15-beta.17"
|
||||
sphinx-prompt = "^1.3.0"
|
||||
Sphinx-Substitution-Extensions = "^2020.9.30"
|
||||
black = "^20.8b1"
|
||||
toml = "^0.10.2"
|
||||
|
||||
[tool.poetry.extras]
|
||||
fast = ["uvloop"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue