Update workflows to Python 3.11
This commit is contained in:
parent
97fe88989c
commit
1f10e25535
2 changed files with 11 additions and 11 deletions
18
.github/workflows/main.yml
vendored
18
.github/workflows/main.yml
vendored
|
@ -7,10 +7,10 @@ jobs:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Setup Python 3.10 x64
|
- name: Setup Python 3.11 x64
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.11'
|
||||||
architecture: 'x64'
|
architecture: 'x64'
|
||||||
- name: Update pip
|
- name: Update pip
|
||||||
run: python -m pip install --upgrade pip
|
run: python -m pip install --upgrade pip
|
||||||
|
@ -33,10 +33,10 @@ jobs:
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Setup Python 3.10 x64
|
- name: Setup Python 3.11 x64
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.11'
|
||||||
architecture: 'x64'
|
architecture: 'x64'
|
||||||
- name: Update pip
|
- name: Update pip
|
||||||
run: python -m pip install --upgrade pip
|
run: python -m pip install --upgrade pip
|
||||||
|
@ -49,11 +49,11 @@ jobs:
|
||||||
- name: Run PyInstaller
|
- name: Run PyInstaller
|
||||||
run: python3 pyinst.py --no-prompts --onefile --no-upx --crt --no-clean --windowed
|
run: python3 pyinst.py --no-prompts --onefile --no-upx --crt --no-clean --windowed
|
||||||
- name: Create archive (.zip)
|
- name: Create archive (.zip)
|
||||||
run: tar.exe -a -c -f Pesterchum_win64_py310.zip -C dist Pesterchum
|
run: tar.exe -a -c -f Pesterchum_win64_py311.zip -C dist Pesterchum
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: Pesterchum_win64_py310.zip
|
name: Pesterchum_win64_py311.zip
|
||||||
path: Pesterchum_win64_py310.zip
|
path: Pesterchum_win64_py311.zip
|
||||||
|
|
||||||
build_win32_38:
|
build_win32_38:
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
|
@ -85,10 +85,10 @@ jobs:
|
||||||
runs-on: macos-11
|
runs-on: macos-11
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Setup Python 3.10 x64
|
- name: Setup Python 3.11 x64
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.11'
|
||||||
architecture: 'x64'
|
architecture: 'x64'
|
||||||
- name: Update pip
|
- name: Update pip
|
||||||
run: python -m pip install --upgrade pip
|
run: python -m pip install --upgrade pip
|
||||||
|
|
4
.github/workflows/pylint.yml
vendored
4
.github/workflows/pylint.yml
vendored
|
@ -5,10 +5,10 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Setup Python 3.10 x64
|
- name: Setup Python 3.11 x64
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.11'
|
||||||
architecture: 'x64'
|
architecture: 'x64'
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: python3 -m pip install PyQt6 certifi PyInstaller
|
run: python3 -m pip install PyQt6 certifi PyInstaller
|
||||||
|
|
Loading…
Reference in a new issue