We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release automation for v0.3.2 fails: https://github.com/Modalities/modalities/actions/runs/12129017415/job/33816864753
The problem seems to be this:
sigstore ~= 2.1
cryptography >= 39
cryptography == 44
A simple solution could be:
sigstore ~= 3.0
cryptography >= 42, < 44
The text was updated successfully, but these errors were encountered:
flxst
Successfully merging a pull request may close this issue.
Release automation for v0.3.2 fails: https://github.com/Modalities/modalities/actions/runs/12129017415/job/33816864753
The problem seems to be this:
sigstore ~= 2.1
as a dependency, which in turn hascryptography >= 39
as a dependencycryptography == 44
was released only a few days ago and contains breaking changesA simple solution could be:
sigstore ~= 3.0
as a dependency, which via v3.5.3 hascryptography >= 42, < 44
as a dependency.The text was updated successfully, but these errors were encountered: