Skip to content

setup.py: bump PyJWT floor to >=2.11.0 to match the actual runtime requirement #216

setup.py: bump PyJWT floor to >=2.11.0 to match the actual runtime requirement

setup.py: bump PyJWT floor to >=2.11.0 to match the actual runtime requirement #216

Workflow file for this run

name: Type Check
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: pip install tox
- name: Type Check
run: tox -e mypy