Skip to content

Commit

Permalink
AUT-2461: pinning dependency to fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleJono committed Dec 1, 2024
1 parent 553f8f2 commit f381c41
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,16 +102,20 @@ jobs:
with:
name: python-package-distributions
path: dist/
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install cryptography version 43
run: |
python -m pip install --upgrade pip
pip install cryptography==43.*
- name: Sign the dists with Sigstore
uses: sigstore/[email protected]
with:
inputs: >-
./dist/*.tar.gz
./dist/*.whl
env:
# Pin cryptography to avoid the SCT registration issue
PIP_CONSTRAINT: |
cryptography==43.0.3
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down
2 changes: 1 addition & 1 deletion authsignal/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "4.0.1"
VERSION = "4.0.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "authsignal"
version = "4.0.1"
version = "4.0.2"
description = "Authsignal Python SDK for Passwordless Step Up Authentication"
authors = ["justinsoong <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit f381c41

Please sign in to comment.