mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
⬆️ Bump nonebot-plugin-orm from 0.6.3 to 0.7.1 (#264)
Bumps [nonebot-plugin-orm](https://github.com/nonebot/plugin-orm) from 0.6.3 to 0.7.1. - [Release notes](https://github.com/nonebot/plugin-orm/releases) - [Commits](https://github.com/nonebot/plugin-orm/compare/v0.6.3...v0.7.1) --- updated-dependencies: - dependency-name: nonebot-plugin-orm dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
61
poetry.lock
generated
61
poetry.lock
generated
@@ -44,13 +44,13 @@ docs = ["sphinx (==6.1.3)", "sphinx-mdinclude (==0.5.3)"]
|
||||
|
||||
[[package]]
|
||||
name = "alembic"
|
||||
version = "1.12.0"
|
||||
version = "1.13.1"
|
||||
description = "A database migration tool for SQLAlchemy."
|
||||
optional = false
|
||||
python-versions = ">=3.7"
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "alembic-1.12.0-py3-none-any.whl", hash = "sha256:03226222f1cf943deee6c85d9464261a6c710cd19b4fe867a3ad1f25afda610f"},
|
||||
{file = "alembic-1.12.0.tar.gz", hash = "sha256:8e7645c32e4f200675e69f0745415335eb59a3663f5feb487abfa0b30c45888b"},
|
||||
{file = "alembic-1.13.1-py3-none-any.whl", hash = "sha256:2edcc97bed0bd3272611ce3a98d98279e9c209e7186e43e75bbb1b2bdfdbcc43"},
|
||||
{file = "alembic-1.13.1.tar.gz", hash = "sha256:4932c8558bf68f2ee92b9bbcb8218671c627064d5b08939437af6d77dc05e595"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
@@ -59,7 +59,7 @@ SQLAlchemy = ">=1.3.0"
|
||||
typing-extensions = ">=4"
|
||||
|
||||
[package.extras]
|
||||
tz = ["python-dateutil"]
|
||||
tz = ["backports.zoneinfo"]
|
||||
|
||||
[[package]]
|
||||
name = "anyio"
|
||||
@@ -945,35 +945,37 @@ typing-extensions = ">=4.0.0"
|
||||
|
||||
[[package]]
|
||||
name = "nonebot-plugin-orm"
|
||||
version = "0.6.3"
|
||||
version = "0.7.1"
|
||||
description = "SQLAlchemy ORM support for nonebot"
|
||||
optional = false
|
||||
python-versions = "<4.0,>=3.8"
|
||||
files = [
|
||||
{file = "nonebot_plugin_orm-0.6.3-py3-none-any.whl", hash = "sha256:51046578bf9cb29b28229ce8df02a7423706f56c57af573f43e3ac9420074eb6"},
|
||||
{file = "nonebot_plugin_orm-0.6.3.tar.gz", hash = "sha256:7b64966243b02f979cf20e6d9877ef6213c55920daae5c8f3078f78f264b55a6"},
|
||||
{file = "nonebot_plugin_orm-0.7.1-py3-none-any.whl", hash = "sha256:8e663094b0521a4838a4f7e65d53b603bfc5da77bafe9a89c912385918efb569"},
|
||||
{file = "nonebot_plugin_orm-0.7.1.tar.gz", hash = "sha256:e6ae8f93e7e2a0f3de40a4f3dbfd48684654468aea1ea3ca31009fa5aaff42d8"},
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
aiosqlite = {version = ">=0.19,<1.0", optional = true, markers = "extra == \"default\""}
|
||||
alembic = ">=1.12,<2.0"
|
||||
alembic = ">=1.13,<2.0"
|
||||
click = ">=8.1,<9.0"
|
||||
importlib-resources = {version = ">=6.1,<7.0", markers = "python_version < \"3.12\""}
|
||||
nonebot-plugin-localstore = ">=0.5,<1.0"
|
||||
nonebot2 = ">=2.1,<3.0"
|
||||
sqlalchemy = ">=2.0,<3.0"
|
||||
typing-extensions = {version = ">=4.8,<5.0", markers = "python_version < \"3.11\""}
|
||||
nonebot-plugin-localstore = ">=0.6,<1.0"
|
||||
nonebot2 = ">=2.2,<3.0"
|
||||
sqlalchemy = [
|
||||
{version = ">=2.0,<3.0"},
|
||||
{version = "*", extras = ["aiosqlite"], optional = true, markers = "extra == \"default\""},
|
||||
]
|
||||
typing-extensions = {version = ">=4.9,<5.0", markers = "python_version < \"3.11\""}
|
||||
|
||||
[package.extras]
|
||||
aiomysql = ["aiomysql (>=0.2,<1.0)"]
|
||||
aiosqlite = ["aiosqlite (>=0.19,<1.0)"]
|
||||
asyncmy = ["asyncmy (>=0.2,<1.0)"]
|
||||
asyncpg = ["asyncpg (>=0.28,<1.0)"]
|
||||
default = ["aiosqlite (>=0.19,<1.0)"]
|
||||
mysql = ["aiomysql (>=0.2,<1.0)"]
|
||||
postgresql = ["psycopg[binary] (>=3.1,<4.0)"]
|
||||
psycopg = ["psycopg[binary] (>=3.1,<4.0)"]
|
||||
sqlite = ["aiosqlite (>=0.19,<1.0)"]
|
||||
aiomysql = ["sqlalchemy[aiomysql]"]
|
||||
aiosqlite = ["sqlalchemy[aiosqlite]"]
|
||||
asyncmy = ["sqlalchemy[asyncmy]"]
|
||||
asyncpg = ["sqlalchemy[postgresql-asyncpg]"]
|
||||
default = ["sqlalchemy[aiosqlite]"]
|
||||
mysql = ["sqlalchemy[aiomysql]"]
|
||||
postgresql = ["sqlalchemy[postgresql-psycopgbinary]"]
|
||||
psycopg = ["sqlalchemy[postgresql-psycopgbinary]"]
|
||||
sqlite = ["sqlalchemy[aiosqlite]"]
|
||||
|
||||
[[package]]
|
||||
name = "nonebot2"
|
||||
@@ -1454,8 +1456,9 @@ files = [
|
||||
]
|
||||
|
||||
[package.dependencies]
|
||||
greenlet = {version = "!=0.4.17", markers = "platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\""}
|
||||
typing-extensions = ">=4.2.0"
|
||||
aiosqlite = {version = "*", optional = true, markers = "extra == \"aiosqlite\""}
|
||||
greenlet = {version = "!=0.4.17", optional = true, markers = "platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\" or extra == \"aiosqlite\""}
|
||||
typing-extensions = {version = ">=4.2.0", optional = true, markers = "extra == \"aiosqlite\""}
|
||||
|
||||
[package.extras]
|
||||
aiomysql = ["aiomysql (>=0.2.0)", "greenlet (!=0.4.17)"]
|
||||
@@ -1637,13 +1640,13 @@ files = [
|
||||
|
||||
[[package]]
|
||||
name = "typing-extensions"
|
||||
version = "4.8.0"
|
||||
version = "4.10.0"
|
||||
description = "Backported and Experimental Type Hints for Python 3.8+"
|
||||
optional = false
|
||||
python-versions = ">=3.8"
|
||||
files = [
|
||||
{file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"},
|
||||
{file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"},
|
||||
{file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"},
|
||||
{file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"},
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -2139,4 +2142,4 @@ multidict = ">=4.0"
|
||||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.10"
|
||||
content-hash = "2978c1536e6ee920d3332edea017153e1ee7e02e2a5d2d16cff358f4431656ce"
|
||||
content-hash = "e7d5303c55af036b368bbcff6f96c00990002bcef7021451fc3e2a7653f67a8c"
|
||||
|
||||
@@ -16,7 +16,7 @@ pandas = '>=1.4.3,<3.0.0'
|
||||
playwright = '^1.41.2'
|
||||
ujson = '^5.9.0'
|
||||
aiofiles = "^23.2.1"
|
||||
nonebot-plugin-orm = ">=0.1.1,<0.7.0"
|
||||
nonebot-plugin-orm = ">=0.1.1,<0.8.0"
|
||||
nonebot-plugin-localstore = "^0.6.0"
|
||||
httpx = "^0.27.0"
|
||||
nonebot-plugin-alconna = ">=0.30,<0.38"
|
||||
@@ -31,7 +31,7 @@ ruff = '>=0.0.239,<0.3.1'
|
||||
types-aiofiles = "^23.2.0.20240106"
|
||||
nonebot2 = { extras = ["fastapi"], version = "^2.2.0" }
|
||||
types-lxml = "^2024.2.9"
|
||||
nonebot-plugin-orm = { extras = ["default"], version = ">=0.3,<0.7" }
|
||||
nonebot-plugin-orm = { extras = ["default"], version = ">=0.3,<0.8" }
|
||||
nonebot-adapter-onebot = "^2.4.1"
|
||||
nonebot-adapter-satori = "^0.9.3"
|
||||
nonebot-adapter-kaiheila = "^0.3.1"
|
||||
|
||||
Reference in New Issue
Block a user