Skip to content

Commit 41ccbd2

Browse files
authored
Merge pull request #34 from authsignal/AUT-2461.7
AUT-2461: pinning dependency to fix actions
2 parents 553f8f2 + f381c41 commit 41ccbd2

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/publish-to-pypi.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -102,16 +102,20 @@ jobs:
102102
with:
103103
name: python-package-distributions
104104
path: dist/
105+
- name: Set up Python environment
106+
uses: actions/setup-python@v4
107+
with:
108+
python-version: "3.x"
109+
- name: Install cryptography version 43
110+
run: |
111+
python -m pip install --upgrade pip
112+
pip install cryptography==43.*
105113
- name: Sign the dists with Sigstore
106114
uses: sigstore/[email protected]
107115
with:
108116
inputs: >-
109117
./dist/*.tar.gz
110118
./dist/*.whl
111-
env:
112-
# Pin cryptography to avoid the SCT registration issue
113-
PIP_CONSTRAINT: |
114-
cryptography==43.0.3
115119
- name: Create GitHub Release
116120
env:
117121
GITHUB_TOKEN: ${{ github.token }}

authsignal/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "4.0.1"
1+
VERSION = "4.0.2"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "authsignal"
3-
version = "4.0.1"
3+
version = "4.0.2"
44
description = "Authsignal Python SDK for Passwordless Step Up Authentication"
55
authors = ["justinsoong <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)