Skip to content

Commit 9b23369

Browse files
committed
.
1 parent 9df86fb commit 9b23369

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ jobs:
3636
- name: Checkout tools.
3737
uses: actions/checkout@v4
3838

39-
- name: Set up python.
40-
uses: actions/setup-python@v5
41-
with:
42-
python-version: '3.13'
43-
4439
- name: Set up environment for Linux.
4540
if: matrix.system == 'Linux'
4641
shell: bash
@@ -70,8 +65,6 @@ jobs:
7065
libxkbcommon-dev:${{matrix.apt-arch}} libdrm-dev:${{matrix.apt-arch}} libgbm-dev:${{matrix.apt-arch}} libgl1-mesa-dev:${{matrix.apt-arch}} libgles2-mesa-dev:${{matrix.apt-arch}} linux-libc-dev:${{matrix.apt-arch}} libjbig-dev:${{matrix.apt-arch}} \
7166
libegl1-mesa-dev:${{matrix.apt-arch}} libdbus-1-dev:${{matrix.apt-arch}} libibus-1.0-dev:${{matrix.apt-arch}} libudev-dev:${{matrix.apt-arch}} fcitx-libs-dev:${{matrix.apt-arch}} libpipewire-0.3-dev:${{matrix.apt-arch}} libwayland-dev:${{matrix.apt-arch}}
7267
73-
python -m pip install --upgrade sdl3
74-
7568
- name: Set up environment for Darwin.
7669
if: matrix.system == 'Darwin'
7770
shell: bash
@@ -91,8 +84,6 @@ jobs:
9184
arch -${{matrix.cmake-arch}} $BREW install --force cmake libsndfile portaudio libxrandr libxkbcommon \
9285
libxi mesa libogg libvorbis opus wavpack libxmp webp libavif opusfile game-music-emu nasm freetype
9386
94-
python -m pip install --upgrade sdl3
95-
9687
- name: Set up environment for Windows.
9788
if: matrix.system == 'Windows'
9889
shell: bash
@@ -108,7 +99,16 @@ jobs:
10899
echo "FLAGS=-A x64" >> $GITHUB_ENV
109100
fi
110101
111-
python -m pip install --upgrade sdl3
102+
- name: Set up python.
103+
uses: actions/setup-python@v5
104+
with:
105+
python-version: '3.13'
106+
107+
- name: Install dependencies.
108+
shell: bash
109+
run: |
110+
python -m pip install --upgrade pip
111+
python -m pip install PySDL3
112112
113113
- name: Checkout modules.
114114
shell: bash

0 commit comments

Comments
 (0)