ci: switch back from uv to pip

Reverts c59f0ca1ce (#13)

Too many CI test timeouts from installing torch/nvidia packages with uv:
https://github.com/astral-sh/uv/issues/1912
This commit is contained in:
Enno Hermann 2024-04-02 16:24:38 +02:00
parent dd3768d4b1
commit 00f8d47bcf
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 uv
run: python3 -m pip install --upgrade pip setuptools wheel
- 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 uv pip install --system "TTS[all] @ ."
python3 -m pip install .[all]
python3 setup.py egg_info
- name: Unit tests
run: make ${{ matrix.subset }}