Skip to content

Commit

Permalink
Fix windows build (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
aantn authored Jun 16, 2024
1 parent 7ff0fee commit ef8db7a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-binaries-and-brew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,21 @@ jobs:
python-version: '3.11'

- name: Install dependencies
if: matrix.os != 'windows-latest'
run: |
python -m pip install --upgrade pip setuptools pyinstaller
curl -sSL https://install.python-poetry.org | python3 - --version 1.4.0
poetry config virtualenvs.create false
poetry install --no-root
- name: Install dependencies
if: matrix.os == 'windows-latest'
run: |
python -m pip install --upgrade pip setuptools pyinstaller
curl -sSL https://install.python-poetry.org | python3 - --version 1.4.0
C:\Users\runneradmin\AppData\Roaming\Python\Scripts\poetry config virtualenvs.create false
C:\Users\runneradmin\AppData\Roaming\Python\Scripts\poetry install --no-root
- name: Install dependencies (Linux)
if: matrix.os == 'ubuntu-20.04'
run: |
Expand Down

0 comments on commit ef8db7a

Please sign in to comment.