Skip to content

Bump cryptography from 44.0.1 to 46.0.5 #216

Bump cryptography from 44.0.1 to 46.0.5

Bump cryptography from 44.0.1 to 46.0.5 #216

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-22.04 # 22.04 has python 3.7, see https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
with:
python-version: ${{ matrix.python-version }}
- name: Run test
run: |
pip install -r requirements_dev.txt
make test