Skip to content

Update cryptography requirement from <42.0,>=3.2 to >=3.2,<44.0 #33

Update cryptography requirement from <42.0,>=3.2 to >=3.2,<44.0

Update cryptography requirement from <42.0,>=3.2 to >=3.2,<44.0 #33

Workflow file for this run

name: Publish
on: push
jobs:
publish:
name: Publish package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install pypa/build
run: |
python -m pip install build --user
- name: Build a binary wheel and source tarball
run: |
python -m build --sdist --wheel --outdir dist/ .
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}