Skip to content

Commit

Permalink
Merge pull request #1 from RexWzh/rex
Browse files Browse the repository at this point in the history
fix requirements
  • Loading branch information
RexWzh authored Oct 12, 2023
2 parents 5aa8dea + 5bf0f89 commit 7ca9783
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion askchat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

__author__ = """Rex Wang"""
__email__ = '1073853456@qq.com'
__version__ = '0.0.1'
__version__ = '0.0.2'

from .askchat import ask
1 change: 0 additions & 1 deletion askchat/askchat.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Main module."""
import chattool
from chattool import Chat
import asyncio
from argparse import ArgumentParser
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.0.2
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
with open('README.md') as readme_file:
readme = readme_file.read()

requirements = [ ]
requirements = ['chattool>=2.3.0']

test_requirements = ['pytest>=3', 'chattool>=2.3.0']
test_requirements = ['pytest>=3']

setup(
author="Rex Wang",
Expand Down

0 comments on commit 7ca9783

Please sign in to comment.