fix(setup): invalid version (fix #456) (#457)

This commit is contained in:
源文雨
2024-06-26 14:55:30 +09:00
committed by GitHub
parent b9d6cd210c
commit 2cd56622af
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -18,9 +18,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Test Install
run: pip install .
- name: Run Test
run: |
+1 -1
View File
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name="chattts",
version=os.environ.get("CHTTS_VER", "develop"),
version=os.environ.get("CHTTS_VER", "v0.0.0").lstrip("v"),
description="A generative speech model for daily dialogue",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",