Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Commit

Permalink
报告:depencive bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
0x24a committed May 26, 2023
1 parent 10b4f6f commit 8cecadc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hiyobot/hackchat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import websocket,ssl,json,threading,uuid,time,logging,re,traceback,inspect,asyncio,queue
from functools import wraps
HIYOBOT_VERSION=(0,2,5)
HIYOBOT_VERSION=(0,2,6)
MAX_RECV_LOG_LIMIT=100 #0 for no limit
def _isasync(func):
if inspect.isasyncgenfunction(func) or inspect.iscoroutinefunction(func):
Expand Down
2 changes: 1 addition & 1 deletion hiyobot/zhangchat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import websocket,ssl,json,threading,uuid,time,logging,re,traceback,inspect,asyncio,queue
from functools import wraps
HIYOBOT_VERSION=(0,2,5)
HIYOBOT_VERSION=(0,2,6)
MAX_RECV_LOG_LIMIT=100 #0 for no limit
def _isasync(func):
if inspect.isasyncgenfunction(func) or inspect.iscoroutinefunction(func):
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='hiyobot', # 你的项目名称
version="0.2.5", # 你的项目版本
version="0.2.6", # 你的项目版本
description='A simple bot framework for Hack.chat.', # 你的项目简介
long_description=open('README.md').read(), # 你的项目详细介绍,一般从README.md文件中读取
long_description_content_type='text/markdown', # 你的项目详细介绍的格式,一般为markdown格式
Expand All @@ -23,7 +23,7 @@
gevent==22.10.2
greenlet==2.0.2
pycparser==2.21
websocket==0.2.1
websocket-client==1.3.2
zope.event==4.6
zope.interface==6.0""".splitlines(),
)

0 comments on commit 8cecadc

Please sign in to comment.