Skip to content

Update pymediainfo from 6.1.0 to 7.0.1 #1620

Update pymediainfo from 6.1.0 to 7.0.1

Update pymediainfo from 6.1.0 to 7.0.1 #1620

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions build wheel
sed -i '/Django==.*/d' ./requirements.txt # delete django dependency
- name: Test with tox
run: |
tox
python -m build