Skip to content

Commit

Permalink
#19 wheelのインストールエラー対策
Browse files Browse the repository at this point in the history
  • Loading branch information
so-c committed Jul 30, 2022
1 parent b33cf31 commit 0d6d885
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,14 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: pip
- name: Install Python dependencies
shell: bash
run: pip install -r ./voicevox_engine/requirements.txt -target ./voicevox_engine
run: |
# FIXME: SO-C cannot solve known issue.
# https://github.com/Nuitka/Nuitka/issues/1406
python -m pip install --upgrade pip setuptools==60.6.0 wheel
pip install -r ./voicevox_engine/requirements.txt -target ./voicevox_engine
- name: Configure .env
run: (Get-Content ./.env.production) -replace "run.exe", "./voicevox_engine/run.py --enable_mock" > .env
shell: pwsh
Expand Down

0 comments on commit 0d6d885

Please sign in to comment.