Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ make install;
make distclean;

cd ~/ffmpeg_sources;
curl -kLO "https://cfhcable.dl.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
curl -kLO "https://downloads.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
tar xzf "lame-$LAME_VERSION.tar.gz"
cd "lame-$LAME_VERSION"
./configure --prefix="$BUILD_DIR" --enable-nasm --enable-shared;
Expand Down
2 changes: 1 addition & 1 deletion .ci/build_wheels_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ if [ "$ARCH" = "x86_64" ]; then
arg=("--enable-nasm")
fi
cd "$SRC_PATH";
curl -kLO "https://cfhcable.dl.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
curl -kLO "https://downloads.sourceforge.net/project/lame/lame/$LAME_VERSION/lame-$LAME_VERSION.tar.gz"
tar xzf "lame-$LAME_VERSION.tar.gz"
cd "lame-$LAME_VERSION"
git apply "$base_dir/.ci/libmp3lame-symbols.patch"
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,18 @@ env:

jobs:
windows_wheels_tests:
runs-on: windows-latest
env:
FF_BUILD_DIR: ~/ff_deps
SDL_ROOT: ~/ff_deps/SDL2
FFMPEG_ROOT: ~/ff_deps/ffmpeg
strategy:
matrix:
os: [ windows-latest ]
python: [ '3.9', '3.10', '3.11', '3.12', '3.13']
include:
- os: windows-11-arm
python: '3.13'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.2.2
- name: Set up Python ${{ matrix.python }}
Expand Down Expand Up @@ -170,10 +174,10 @@ jobs:
needs: linux_wheels
steps:
- uses: actions/checkout@v4.2.2
- name: Set up Python 3.x
- name: Set up Python 3.13
uses: actions/setup-python@v5.4.0
with:
python-version: 3.x
python-version: 3.13 # 3.14 fails!
- uses: actions/download-artifact@v4.2.1
with:
pattern: py_wheel-*
Expand Down
Loading