Skip to content

Commit

Permalink
🔧 版本约束改为>=
Browse files Browse the repository at this point in the history
  • Loading branch information
AzideCupric committed Jul 30, 2024
1 parent 87790e2 commit 95ad93d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", "schedule:weekly", "group:allNonMajor"],
"labels": ["dependencies"],
"rangeStrategy": "widen",
"rangeStrategy": "update-lockfile",
"ignoreDeps": ["python"],
"commitMessagePrefix": ":arrow_up:",
"packageRules": [
Expand Down
38 changes: 19 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,40 +20,40 @@ classifiers = [

[tool.poetry.dependencies]
python = ">=3.9, <4.0"
nonebot2 = "^2.3.0"
strenum = "^0.4.8"
nonebot2 = ">=2.3.0"
strenum = ">=0.4.8"
pydantic = ">=1.10.0,<3.0.0,!=2.5.0,!=2.5.1"
anyio = ">=3.3.0,<5.0.0"
filetype = "^1.2.0"
filetype = ">=1.2.0"

[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.20.2"
ipdb = "^0.13.9"
pip = "^23.0"
pytest-cov = "^5.0.0"
nonebug = "^0.3.1"
pytest-asyncio = ">=0.20.2"
ipdb = ">=0.13.9"
pip = ">=23.0"
pytest-cov = ">=5.0.0"
nonebug = ">=0.3.1"
nonebot2 = { extras = [
"fastapi",
"httpx",
"websockets",
], version = "^2.0.0rc4" }
], version = ">=2.3.0" }
ruff = ">=0.4.0"
pytest-mock = "^3.10.0"
respx = "^0.20.2"
pytest-mock = ">=3.10.0"
respx = ">=0.20.2"

[tool.poetry.group.adapters]
optional = true

[tool.poetry.group.adapters.dependencies]
nonebot-adapter-onebot = "^2.4.0"
nonebot-adapter-kaiheila = "^0.3.1"
nonebot-adapter-onebot = ">=2.4.0"
nonebot-adapter-kaiheila = ">=0.3.1"
nonebot-adapter-telegram = { git = "https://github.com/nonebot/adapter-telegram.git" }
nonebot-adapter-feishu = "^2.4.0"
nonebot-adapter-red = "^0.9.0"
nonebot-adapter-dodo = "^0.2.0"
nonebot-adapter-qq = "^1.4.1"
nonebot-adapter-satori = "^0.12.3"
nonebot-adapter-discord = "^0.1.7"
nonebot-adapter-feishu = ">=2.4.0"
nonebot-adapter-red = ">=0.9.0"
nonebot-adapter-dodo = ">=0.2.0"
nonebot-adapter-qq = ">=1.4.1"
nonebot-adapter-satori = ">=0.10.2"
nonebot-adapter-discord = ">=0.1.7"

[tool.black]
line-length = 88
Expand Down

0 comments on commit 95ad93d

Please sign in to comment.