Skip to content

Commit

Permalink
Prevent being YAML'd in the future
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed May 8, 2024
1 parent dcee25a commit 7ee9aa0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Python
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: "3.12"

- name: Packages
run: pip install -r tests/requirements.txt
Expand All @@ -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: "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: macos-12, python: "3.9", ffmpeg: "6.1"}

env:
PYAV_PYTHON: python${{ matrix.config.python }}
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.9"
- 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.9"
- name: Set up QEMU
if: matrix.os == 'ubuntu-latest'
uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit 7ee9aa0

Please sign in to comment.