Skip to content

Commit abb0972

Browse files
committed
fix: Try fix x86 choosing x64 in pipenv installation
1 parent 9b2b704 commit abb0972

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
- name: Set up Python 3.9
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: 3.9
22+
python-version: 3.9.7
2323
architecture: ${{ matrix.architecture }}
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
2727
pip install pipenv
28-
pipenv install --dev
28+
pipenv --python C:\hostedtoolcache\windows\Python\3.9.7\${{ matrix.architecture }}\python.exe install --dev
2929
pipenv install pyinstaller
3030
- name: Build executable
3131
run: |

0 commit comments

Comments
 (0)