diff --git a/nonebot_plugin_value/__init__.py b/nonebot_plugin_value/__init__.py index 113dd5e..0e70cec 100644 --- a/nonebot_plugin_value/__init__.py +++ b/nonebot_plugin_value/__init__.py @@ -4,7 +4,6 @@ require("nonebot_plugin_orm") require("nonebot_plugin_localstore") -from . import migrations from .api import api_balance, api_currency, api_transaction from .api.api_currency import get_or_create_currency from .api.depends import factory @@ -20,7 +19,6 @@ usage="请查看API文档。", type="library", homepage="https://github.com/JohnRichard4096/nonebot_plugin_value", - extra={"orm_version_location": migrations}, # 迁移文件 supported_adapters=None, ) diff --git a/pyproject.toml b/pyproject.toml index f60b048..e8a1de9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nonebot-plugin-value" -version = "0.1.4" +version = "0.1.4.post1" description = "Economy API for NoneBot2" readme = "README.md" requires-python = ">=3.10, <4.0.0"