Skip to content

Commit

Permalink
update patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
RexWzh committed Aug 29, 2023
1 parent 67a458d commit f8c63fd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
os: ubuntu-latest
- python-version: 3.9
os: ubuntu-latest
- python-version: '3.10'
os: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion openai_api_call/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Rex Wang"""
__email__ = '[email protected]'
__version__ = '1.0.0'
__version__ = '1.0.1'

import os, requests
from .chattool import Chat, Resp
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 = '1.0.0'
VERSION = '1.0.1'

requirements = ['Click>=7.0', 'requests>=2.20', 'tqdm>=4.60', 'docstring_parser>=0.10', 'aiohttp>=3.8']
test_requirements = ['pytest>=3', 'unittest']
Expand Down
4 changes: 1 addition & 3 deletions tests/test_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,4 @@ def data2chat(data):
return chat
t = time.time()
process_chats(chatlogs, data2chat, chkpoint, clearfile=True)
print(f"Time elapsed: {time.time() - t:.2f}s")

test_async_process()
print(f"Time elapsed: {time.time() - t:.2f}s")

0 comments on commit f8c63fd

Please sign in to comment.