Skip to content

chore(deps): bump werkzeug from 3.0.3 to 3.0.4 #448

chore(deps): bump werkzeug from 3.0.3 to 3.0.4

chore(deps): bump werkzeug from 3.0.3 to 3.0.4 #448

Workflow file for this run

name: Python package
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install additional Python interpreters
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.9 python3.9-distutils python3.10 python3.10-distutils python3.11 python3.12
- name: Install ffmpeg
run: sudo apt-get install ffmpeg
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Run tox
run: python -m tox --skip-missing false