diff options
| author | Marco Rodolfi <marco.rodolfi@tuta.io> | 2023-07-24 04:30:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-23 19:30:54 -0700 |
| commit | 6993516ccb8b371a0b1c8152a3c672fffffad7dc (patch) | |
| tree | ebfbc35eebd68fda8e5fcd9a3a194e5f0d0e961b /.github/workflows/build.yml | |
| parent | 37c1a0e9648e6b84aaa996d5ecfd1d2d5d49622f (diff) | |
| download | decky-loader-6993516ccb8b371a0b1c8152a3c672fffffad7dc.tar.gz decky-loader-6993516ccb8b371a0b1c8152a3c672fffffad7dc.zip | |
Bugfix: Unable to load _sqlite3 on main SteamOS (#507)v2.10.4-pre3
* Update to latest python
I have odd behaviour with importing sqlite3, which is failing to do. I have no clue why, so I'm trying to update Python to the latest stable to check if it's a Python bug.
* Update aiohttp for python compatibility
* Sligtly lower aiohttp version
* Update pyinstaller to latest stable version
It was failing to build a working executable with the latest python runtime.
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 104b1f70..25024b33 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,15 +47,15 @@ jobs: with: node-version: 18 - - name: Set up Python 3.10.2 🐍 + - name: Set up Python 3.11.4 🐍 uses: actions/setup-python@v4 with: - python-version: "3.10.2" + python-version: "3.11.4" - name: Install Python dependencies ⬇️ run: | python -m pip install --upgrade pip - pip install pyinstaller==5.5 + pip install pyinstaller==5.13.0 [ -f requirements.txt ] && pip install -r requirements.txt - name: Install JS dependencies ⬇️ @@ -97,15 +97,15 @@ jobs: with: node-version: 18 - - name: Set up Python 3.10.2 🐍 + - name: Set up Python 3.11.4 🐍 uses: actions/setup-python@v4 with: - python-version: "3.10.2" + python-version: "3.11.4" - name: Install Python dependencies ⬇️ run: | python -m pip install --upgrade pip - pip install pyinstaller==5.5 + pip install pyinstaller==5.13.0 pip install -r requirements.txt - name: Install JS dependencies ⬇️ |
