Skip to content

Commit

Permalink
Revert "ci: switch back from uv to pip"
Browse files Browse the repository at this point in the history
This reverts commit 00f8d47.

uv has fixed astral-sh/uv#1921, which should resolve
timeout issues with pytorch/nvidia packages.
  • Loading branch information
eginhard committed Apr 22, 2024
1 parent f636fab commit 697d4ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
sudo apt-get install -y --no-install-recommends git make gcc
make system-deps
- name: Install/upgrade Python setup deps
run: python3 -m pip install --upgrade pip setuptools wheel
run: python3 -m pip install --upgrade pip setuptools wheel uv
- name: Replace scarf urls
if: contains(fromJSON('["data_tests", "inference_tests", "test_aux", "test_tts", "test_tts2", "test_xtts", "test_zoo0", "test_zoo1", "test_zoo2"]'), matrix.subset)
run: |
sed -i 's/https:\/\/coqui.gateway.scarf.sh\//https:\/\/github.com\/coqui-ai\/TTS\/releases\/download\//g' TTS/.models.json
- name: Install TTS
run: |
python3 -m pip install .[all]
python3 -m uv pip install --system "coqui-tts[dev,server,ja] @ ."
python3 setup.py egg_info
- name: Unit tests
run: make ${{ matrix.subset }}
Expand Down

0 comments on commit 697d4ef

Please sign in to comment.