Skip to content

Commit

Permalink
feat(workflow): optimize package installation in Windows workflow wit…
Browse files Browse the repository at this point in the history
…h force and no-cache options
  • Loading branch information
amnweb committed Nov 13, 2024
1 parent b050f9d commit da07ba2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
run: |
.\venv\Scripts\Activate
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install colorama
pip install --upgrade cx_Freeze
pip install --force --no-cache -r requirements.txt
pip install --force --no-cache colorama
pip install --force --no-cache --upgrade cx_Freeze==7.2.4
# pip install --force --no-cache --pre --extra-index-url https://marcelotduarte.github.io/packages/ cx_Freeze
shell: pwsh

Expand Down

0 comments on commit da07ba2

Please sign in to comment.