🔖 bump version 2.0.0rc2

This commit is contained in:
Ju4tCode
2022-11-24 03:35:31 +00:00
committed by GitHub
parent 89d8abf863
commit 1644615462
4 changed files with 25 additions and 24 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "nonebot2"
version = "2.0.0-rc.1"
version = "2.0.0rc2"
description = "An asynchronous python bot framework."
authors = ["yanyongyu <yyy@nonebot.dev>"]
license = "MIT"
@ -26,15 +26,16 @@ python = "^3.8"
yarl = "^1.7.2"
loguru = "^0.6.0"
pygtrie = "^2.4.1"
fastapi = "^0.87.0"
fastapi = ">=0.87.0,<1.0.0"
tomlkit = ">=0.10.0,<1.0.0"
typing-extensions = ">=3.10.0,<5.0.0"
Quart = { version = "^0.18.0", optional = true }
websockets = { version="^10.0", optional = true }
pydantic = { version = "^1.10.0", extras = ["dotenv"] }
uvicorn = { version = "^0.20.0", extras = ["standard"] }
uvicorn = { version = ">=0.20.0,<1.0.0", extras = ["standard"] }
websockets = { version="^10.0", optional = true }
Quart = { version = ">=0.18.0,<1.0.0", optional = true }
aiohttp = { version = "^3.7.4", extras = ["speedups"], optional = true }
httpx = { version = ">=0.20.0, <1.0.0", extras = ["http2"], optional = true }
httpx = { version = ">=0.20.0,<1.0.0", extras = ["http2"], optional = true }
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
@ -68,7 +69,7 @@ filterwarnings = [
[tool.black]
line-length = 88
target-version = ["py37", "py38", "py39", "py310"]
target-version = ["py38", "py39", "py310", "py311"]
include = '\.pyi?$'
extend-exclude = '''
'''