Skip to content

Commit 8fbf7ee

Browse files
committed
🐛 fix version 0.56.1
fix pyproject.toml
1 parent 45f29ad commit 8fbf7ee

File tree

4 files changed

+62
-54
lines changed

4 files changed

+62
-54
lines changed

.github/actions/setup-python/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
python-version:
66
description: Python version
77
required: false
8-
default: "3.10"
8+
default: "3.11"
99

1010
runs:
1111
using: "composite"
@@ -17,5 +17,5 @@ runs:
1717
architecture: "x64"
1818
cache: true
1919

20-
- run: pdm sync -G:all
20+
- run: pdm sync -G default -v
2121
shell: bash

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python3 -m pip install pdm
2929
- name: Install Package
3030
run: |
31-
pdm sync -G:all -v
31+
pdm sync -G test -v
3232
- name: Test & Report
3333
run: |
3434
pdm run test

pdm.lock

Lines changed: 35 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,30 @@ dev = [
6969
"nonebot-plugin-localstore>=0.7.1",
7070
"pyyaml>=6.0.1",
7171
"fix-future-annotations>=0.5.0",
72-
"nonebot-adapter-heybox>=0.1.1; python_version >= \"3.11\"",
73-
"nonebot-adapter-wxmp>=0.1.4; python_version >= \"3.10\"",
72+
# "nonebot-adapter-heybox>=0.1.1; python_version >= \"3.11\"",
73+
# "nonebot-adapter-wxmp>=0.1.4; python_version >= \"3.10\"",
74+
]
75+
test = [
76+
"nonebug>=0.4.3",
77+
"pytest-xdist>=3.6.1",
78+
"pytest-asyncio>=0.25.3",
79+
"fastapi>=0.110.2",
80+
"uvicorn[standard]>=0.28.1",
81+
"nonebot2[httpx,websockets]>=2.3.0",
82+
"nonebot-adapter-qq>=1.6.2",
83+
"nonebot-adapter-satori>=0.13.4",
84+
"nonebot-adapter-discord>=0.1.8",
85+
"nonebot-adapter-minecraft>=1.3.2",
86+
"nonebot-adapter-onebot>=2.4.5",
87+
"nonebot-plugin-filehost>=1.1.1",
88+
"nonebot-plugin-send-anything-anywhere>=0.7.1",
89+
"pytest-sugar>=1.0.0",
90+
"pytest-mock>=3.14.0",
91+
"nonebot-plugin-localstore>=0.7.1",
92+
"pyyaml>=6.0.1",
93+
"nonebot-adapter-telegram>=0.1.0b18",
94+
"nonebot-adapter-kaiheila>=0.3.4",
95+
"nonebot-adapter-console>=0.6.0",
7496
]
7597
[tool.pdm.build]
7698
includes = ["src/nonebot_plugin_alconna"]

0 commit comments

Comments
 (0)