Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
arch: x86_64
- os: windows-latest
arch: AMD64
- os: windows-11-arm
arch: ARM64
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
Expand All @@ -63,6 +65,7 @@ jobs:
CIBW_ENVIRONMENT_WINDOWS: INCLUDE=C:\\cibw\\vendor\\include LIB=C:\\cibw\\vendor\\lib PYAV_SKIP_TESTS=unicode_filename
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: delvewheel repair --add-path C:\cibw\vendor\bin -w {dest_dir} {wheel}
CIBW_BUILD: "cp310* cp311* cp314t*"
CIBW_SKIP: "cp310-win_arm64"
CIBW_TEST_COMMAND: mv {project}/av {project}/av.disabled && python -m pytest {package}/tests && mv {project}/av.disabled {project}/av
CIBW_TEST_REQUIRES: pytest numpy
run: |
Expand Down
2 changes: 1 addition & 1 deletion scripts/activate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [[ ! "$PYAV_LIBRARY" ]]; then
return 1
fi
else
PYAV_LIBRARY=ffmpeg-8.0
PYAV_LIBRARY=ffmpeg-8.0.1
echo "No \$PYAV_LIBRARY set; defaulting to $PYAV_LIBRARY"
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/ffmpeg-8.0.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0.1-3/ffmpeg-{platform}.tar.gz"
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0.1-4/ffmpeg-{platform}.tar.gz"
}
2 changes: 1 addition & 1 deletion scripts/ffmpeg-latest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0.1-3/ffmpeg-{platform}.tar.gz"
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0.1-4/ffmpeg-{platform}.tar.gz"
}
Loading