mirror of https://github.com/coqui-ai/TTS.git
ci: test lowest and highest compatible versions of dependencies
This commit is contained in:
parent
808a938171
commit
8cab2e3b4e
|
@ -45,8 +45,11 @@ jobs:
|
|||
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 "coqui-tts[dev,server,languages] @ ."
|
||||
python3 setup.py egg_info
|
||||
resolution=highest
|
||||
if [ "${{ matrix.python-version }}" == "3.9" ]; then
|
||||
resolution=lowest-direct
|
||||
fi
|
||||
python3 -m uv pip install --resolution=$resolution --system "coqui-tts[dev,server,languages] @ ."
|
||||
- name: Unit tests
|
||||
run: make ${{ matrix.subset }}
|
||||
- name: Upload coverage data
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
[build-system]
|
||||
requires = [
|
||||
"setuptools",
|
||||
"setuptools-scm",
|
||||
"cython~=0.29.30",
|
||||
"numpy>=2.0.0",
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue