Skip to content

Commit

Permalink
Only build >=3.10 for size reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed May 8, 2024
1 parent a5bae36 commit de5240d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, python: 3.9, ffmpeg: "6.1", extras: true}
- {os: ubuntu-latest, python: 3.9, ffmpeg: "6.0"}
- {os: ubuntu-latest, python: pypy3.9, ffmpeg: "6.1"}
- {os: macos-12, python: 3.9, ffmpeg: "6.1"}
- {os: ubuntu-latest, python: "3.10", ffmpeg: "6.1", extras: true}
- {os: ubuntu-latest, python: "3.9", ffmpeg: "6.0"}
- {os: ubuntu-latest, python: pypy3.9, ffmpeg: "6.0"}
- {os: macos-12, python: "3.9", ffmpeg: "6.1"}

env:
PYAV_PYTHON: python${{ matrix.config.python }}
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
fail-fast: false
matrix:
config:
- {os: windows-latest, python: 3.9, ffmpeg: "6.1"}
- {os: windows-latest, python: "3.9", ffmpeg: "6.1"}

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.10"
- name: Build source package
run: |
pip install cython
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.10"
- name: Set up QEMU
if: matrix.os == 'ubuntu-latest'
uses: docker/setup-qemu-action@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def parse_cflags(raw_flags):
zip_safe=False,
ext_modules=ext_modules,
test_suite="tests",
python_requires=">=3.9",
python_requires=">=3.10",
classifiers=[
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
Expand Down

0 comments on commit de5240d

Please sign in to comment.