Skip to content

Commit d231fc1

Browse files
committed
1 parent 58b68c2 commit d231fc1

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

.ci/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ make install;
5757
make distclean;
5858

5959
cd ~/ffmpeg_sources;
60-
curl -kLO "https://cfhcable.dl.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
60+
curl -kLO "https://downloads.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
6161
tar xzf "lame-$LAME_VERSION.tar.gz"
6262
cd "lame-$LAME_VERSION"
6363
./configure --prefix="$BUILD_DIR" --enable-nasm --enable-shared;

.ci/build_wheels_osx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ if [ "$ARCH" = "x86_64" ]; then
127127
arg=("--enable-nasm")
128128
fi
129129
cd "$SRC_PATH";
130-
curl -kLO "https://cfhcable.dl.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
130+
curl -kLO "https://downloads.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
131131
tar xzf "lame-$LAME_VERSION.tar.gz"
132132
cd "lame-$LAME_VERSION"
133133
git apply "$base_dir/.ci/libmp3lame-symbols.patch"

.github/workflows/pythonapp.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@ env:
1212

1313
jobs:
1414
windows_wheels_tests:
15-
runs-on: windows-latest
1615
env:
1716
FF_BUILD_DIR: ~/ff_deps
1817
SDL_ROOT: ~/ff_deps/SDL2
1918
FFMPEG_ROOT: ~/ff_deps/ffmpeg
2019
strategy:
2120
matrix:
21+
os: [ windows-latest ]
2222
python: [ '3.9', '3.10', '3.11', '3.12', '3.13']
23+
include:
24+
- os: windows-11-arm
25+
python: '3.13'
26+
runs-on: ${{ matrix.os }}
2327
steps:
2428
- uses: actions/checkout@v4.2.2
2529
- name: Set up Python ${{ matrix.python }}
@@ -170,10 +174,10 @@ jobs:
170174
needs: linux_wheels
171175
steps:
172176
- uses: actions/checkout@v4.2.2
173-
- name: Set up Python 3.x
177+
- name: Set up Python 3.13
174178
uses: actions/setup-python@v5.4.0
175179
with:
176-
python-version: 3.x
180+
python-version: 3.13 # 3.14 fails!
177181
- uses: actions/download-artifact@v4.2.1
178182
with:
179183
pattern: py_wheel-*

0 commit comments

Comments
 (0)