Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
RexWzh committed Dec 27, 2023
1 parent c2ae387 commit c4a2656
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chattool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Rex Wang"""
__email__ = '1073853456@qq.com'
__version__ = '3.0.0'
__version__ = '3.0.1'

import os, sys, requests
from .chattool import Chat, Resp
Expand Down
2 changes: 1 addition & 1 deletion chattool/chattool.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def getresponse( self
assert resp.is_valid(), resp.error_message
break
except Exception as e:
max_tries-= 1
max_tries -= 1
numoftries += 1
time.sleep(random.random() * timeinterval)
print(f"Try again ({numoftries}):{e}\n")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
with open('README.md') as readme_file:
readme = readme_file.read()

VERSION = '3.0.0'
VERSION = '3.0.1'

requirements = [
'Click>=7.0', 'requests>=2.20', "responses>=0.23", 'aiohttp>=3.8',
Expand Down

0 comments on commit c4a2656

Please sign in to comment.