Skip to content

Update pyjwt requirement from <2.11,>=2.4.0 to >=2.4.0,<2.14 #4437

Update pyjwt requirement from <2.11,>=2.4.0 to >=2.4.0,<2.14

Update pyjwt requirement from <2.11,>=2.4.0 to >=2.4.0,<2.14 #4437

Workflow file for this run

name: "Lint"
on: [push, pull_request]
jobs:
black:
strategy:
matrix:
python-version: ['3.10', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
cache: 'pip'
python-version: ${{ matrix.python-version }}
- run: pip install -Ur dev-requirements.txt
- run: black --check .
flake8:
strategy:
matrix:
python-version: ['3.10', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
cache: 'pip'
python-version: ${{ matrix.python-version }}
- run: pip install -Ur dev-requirements.txt
- run: flake8
mypy:
strategy:
matrix:
python-version: ['3.10', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
cache: 'pip'
python-version: ${{ matrix.python-version }}
- run: pip install -Ur dev-requirements.txt
- run: mypy .