Bump pyinstaller from 4.3 to 6.4.0 #171
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest] | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version & architecture | |
run: | | |
python -c "import sys; print(sys.version)" | |
python -c "import struct; print(struct.calcsize('P') * 8)" | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip wheel setuptools | |
pip install -r requirements.txt | |
- name: PyInstaller build | |
run: pyinstaller --noconfirm .\target\PyInstaller-Windows\Slice-Windows.spec |