Skip to content

Commit 961dffb

Browse files
committed
.ci/build-wheels.sh: Fix broken sourceforge URL to lame
Both GitHub Actions jobs `linux_wheels` are failing because of a broken sourceforge URL to lame. Fixing that URL allows these two GitHub Actions jobs to pass.
1 parent 58b68c2 commit 961dffb

2 files changed

Lines changed: 2 additions & 2 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;

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def get_wheel_data():
374374
with open('README.rst') as fh:
375375
long_description = fh.read()
376376

377-
setup_requires = []
377+
setup_requires = ['setuptools']
378378
if declare_cython:
379379
setup_requires.append('cython~=3.0.11')
380380

0 commit comments

Comments
 (0)