Skip to content

Commit

Permalink
Update towhee version for 0.7.0 (#1469)
Browse files Browse the repository at this point in the history
Signed-off-by: Binbin Lv <[email protected]>
  • Loading branch information
binbinlv authored Jun 24, 2022
1 parent d9dc4c0 commit 43fc4ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[metadata]
name = towhee
version = 0.7.0
description = Towhee is a framework that helps you encode your unstructured data into embeddings.
long_description = file: README.md
url = https://github.com/towhee-io/towhee
Expand All @@ -11,8 +12,8 @@ platforms = unix, linux, osx, win32

[build_sphinx]
project = towhee
version = 0.6
release = 0.6.0
version = 0.7
release = 0.7.0
source-dir = towhee/doc/source

# setup.cfg
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def parse_requirements(file_name: str) -> List[str]:
if '--models' in sys.argv:
sys.argv.remove('--models')
setup(name='towhee.models',
version='0.6.1',
version='0.7.0',
description='',
author='Towhee Team',
author_email='[email protected]',
Expand All @@ -64,7 +64,7 @@ def parse_requirements(file_name: str) -> List[str]:
install_requires=parse_requirements('requirements.txt'),
extras_require={':python_version<\'3.7\'': 'importlib-resources'},
tests_require=parse_requirements('test_requirements.txt'),
packages=find_packages(exclude=['*test*', 'towhee.models*']),
packages=find_packages(exclude=['*test*', 'towhee.models*', 'serve']),
package_data={'towhee.tests.test_util': ['*.yaml']},
license='http://www.apache.org/licenses/LICENSE-2.0',
entry_points={
Expand Down

0 comments on commit 43fc4ed

Please sign in to comment.