Revert "ci: switch back from uv to pip"

This reverts commit 00f8d47bcf.

uv has fixed https://github.com/astral-sh/uv/issues/1921, which should resolve
timeout issues with pytorch/nvidia packages.
This commit is contained in:
Enno Hermann 2024-04-22 16:13:27 +02:00
parent f636fabe51
commit 697d4effbc
1 changed files with 2 additions and 2 deletions

View File

@ -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 }}