Skip to content

Commit 0b02f40

Browse files
authored
pip install ffpyplayer fails on Python 3.14 release candidate 2
python3.14rc2 -m pip install ffpyplayer
1 parent 58b68c2 commit 0b02f40

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: pip_install_on_python_prerelease
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
jobs:
7+
pip_install_on_python_prerelease:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v5
11+
- uses: actions/setup-python@v6
12+
with:
13+
python-version: 3.14
14+
allow-prereleases: true
15+
- run: pip install --upgrade pip
16+
- run: pip install ffpyplayer

0 commit comments

Comments
 (0)