Bump cryptography from 42.0.8 to 46.0.5 in the pip group across 1 directory #68
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR checks | |
| on: | |
| pull_request: | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: chartboost/ruff-action@v1 | |
| mypy: | |
| needs: ruff | |
| runs-on: ubuntu-22.04 # 24.04 does not have Python 3.7 | |
| strategy: | |
| matrix: | |
| python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: actions/checkout@v3 | |
| - run: sudo apt install libsystemd-dev | |
| - run: pip install -r requirements.txt | |
| - run: pip install mypy==1.4.1 # 1.4.1 is the last version to support Python 3.7, which we run on AmpliPi | |
| - run: mypy --install-types --non-interactive --explicit-package-bases --ignore-missing-imports . |