Compare commits

..

1 Commits

Author SHA1 Message Date
CN171-1
f43fc52ff5 🍻 publish plugin 全球互联网中断监测 (#3830) 2026-01-10 20:32:15 +08:00
3 changed files with 17 additions and 3 deletions

View File

@@ -10180,4 +10180,20 @@
],
"is_official": false
},
{
"module_name": "nonebot_plugin_internet_outage",
"project_link": "nonebot-plugin-internet-outage",
"author_id": 110646806,
"tags": [
{
"label": "Cloudflare",
"color": "#f97316"
},
{
"label": "网络中断监测",
"color": "#dc2626"
}
],
"is_official": false
},
]

View File

@@ -43,8 +43,7 @@ UNKNOWN_PARAM = "Unknown parameter"
@pytest.mark.anyio
@pytest.mark.xfail(
((3, 13) <= sys.version_info < (3, 13, 8))
or ((3, 14) <= sys.version_info < (3, 14, 1)),
((3, 13) <= sys.version_info < (3, 13, 8)) or (3, 14) <= sys.version_info,
reason="CPython Bug, see python/cpython#137317, python/cpython#137862",
)
async def test_depend(app: App):

View File

@@ -15,7 +15,6 @@ toc_max_heading_level: 2
### 💫 杂项
- CI: 修改 `test_depend` cpython 版本范围 [@yanyongyu](https://github.com/yanyongyu) ([#3828](https://github.com/nonebot/nonebot2/pull/3828))
- Plugin: 删除插件 nonebot_plugin_acmd [@hlfzsi](https://github.com/hlfzsi) ([#3750](https://github.com/nonebot/nonebot2/pull/3750))
### 🍻 插件发布