Merge pull request #135 from Dpeta/py311

Python 3.11
This commit is contained in:
Dpeta 2023-05-04 20:43:08 +02:00 committed by GitHub
commit 704e7e1eda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 13 deletions

View file

@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.10 x64
- name: Setup Python 3.11 x64
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
architecture: 'x64'
- name: Update pip
run: python -m pip install --upgrade pip
@ -33,10 +33,10 @@ jobs:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.10 x64
- name: Setup Python 3.11 x64
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
architecture: 'x64'
- name: Update pip
run: python -m pip install --upgrade pip
@ -49,11 +49,11 @@ jobs:
- name: Run PyInstaller
run: python3 pyinst.py --no-prompts --onefile --no-upx --crt --no-clean --windowed
- 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
with:
name: Pesterchum_win64_py310.zip
path: Pesterchum_win64_py310.zip
name: Pesterchum_win64_py311.zip
path: Pesterchum_win64_py311.zip
build_win32_38:
runs-on: windows-2019
@ -85,10 +85,10 @@ jobs:
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.10 x64
- name: Setup Python 3.11 x64
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
architecture: 'x64'
- name: Update pip
run: python -m pip install --upgrade pip

View file

@ -5,10 +5,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.10 x64
- name: Setup Python 3.11 x64
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
architecture: 'x64'
- name: Install Dependencies
run: python3 -m pip install PyQt6 certifi PyInstaller

View file

@ -107,7 +107,7 @@ class ToastMachine:
for k, v in self.machine.types.items():
if self.machine.type == k:
try:
args = inspect.getargspec(v.__init__).args
args = inspect.getfullargspec(v.__init__).args
except:
args = []
@ -133,7 +133,7 @@ class ToastMachine:
if "default" in self.machine.types:
if (
"parent"
in inspect.getargspec(
in inspect.getfullargspec(
self.machine.types["default"].__init__
).args
):