Skip to content

Commit b4e29dd

Browse files
litzki-systemsclaude
andcommitted
Cap cryptography dependency to prevent pyOpenSSL/certbot conflicts
Global pip install of sovp pulled cryptography's latest release, which shadowed the OS-packaged version and broke pyOpenSSL/certbot/josepy on a server. Bound to the range pyOpenSSL 23.x (Ubuntu 24.04's apt version) actually supports: >=38.0.0,!=40.0.0,!=40.0.1,<42. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VR8NiENKeZMKUH77KGNkMV
1 parent 3eaa4fb commit b4e29dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sovp"
7-
version = "1.0.4"
7+
version = "1.0.5"
88
readme = "README.md"
99
description = "Sovereign Validation Protocol (SOVP) Core Engine"
1010
authors = [{name = "Litzki Systems LLC"}]
1111
license = "Apache-2.0"
1212
dependencies = [
13-
"cryptography",
13+
"cryptography>=38.0.0,!=40.0.0,!=40.0.1,<42",
1414
"jcs",
1515
"dnspython",
1616
"requests",

0 commit comments

Comments
 (0)