Skip to content

Commit

Permalink
fix(setup): invalid version (fix #456) (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiama authored Jun 26, 2024
1 parent b9d6cd2 commit 2cd5662
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/unitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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",
Expand Down

0 comments on commit 2cd5662

Please sign in to comment.