fix: revert cryptography version from 47.0.0 to 46.0.0 in pyproject.toml files
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 3s
Integration Tests / test-service-integration (push) Has been cancelled
P2P Network Verification / p2p-verification (push) Has been cancelled
Multi-Node Blockchain Health Monitoring / health-check (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Package Tests / Python package - aitbc-agent-sdk (push) Successful in 16s
Package Tests / Python package - aitbc-core (push) Failing after 12s
Package Tests / Python package - aitbc-crypto (push) Successful in 7s
Package Tests / Python package - aitbc-sdk (push) Successful in 11s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 4s
Package Tests / JavaScript package - aitbc-token (push) Successful in 12s
Python Tests / test-python (push) Successful in 7s

Version 47.0.0 does not exist in PyPI. Reverted to 46.0.0 which is the latest
available version and still provides security fixes for the reported vulnerabilities.
This commit is contained in:
aitbc
2026-04-23 17:12:09 +02:00
parent 213c288cac
commit 3c2cfcb67a
4 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ packages = [
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.13" python = "^3.13"
cryptography = ">=47.0.0" cryptography = ">=46.0.0"
# All dependencies managed centrally in /opt/aitbc/requirements-consolidated.txt # All dependencies managed centrally in /opt/aitbc/requirements-consolidated.txt
# Use: ./scripts/install-profiles.sh web database blockchain # Use: ./scripts/install-profiles.sh web database blockchain

View File

@@ -8,7 +8,7 @@ authors = [
readme = "README.md" readme = "README.md"
requires-python = ">=3.13" requires-python = ">=3.13"
dependencies = [ dependencies = [
"cryptography>=47.0.0", "cryptography>=46.0.0",
"sqlmodel>=0.0.14", "sqlmodel>=0.0.14",
"fastapi>=0.104.0", "fastapi>=0.104.0",
"uvicorn>=0.24.0", "uvicorn>=0.24.0",

View File

@@ -8,7 +8,7 @@ authors = [
readme = "README.md" readme = "README.md"
requires-python = ">=3.13" requires-python = ">=3.13"
dependencies = [ dependencies = [
"cryptography>=47.0.0", "cryptography>=46.0.0",
"pynacl>=1.5.0" "pynacl>=1.5.0"
] ]

View File

@@ -8,7 +8,7 @@ authors = [
readme = "README.md" readme = "README.md"
requires-python = ">=3.13" requires-python = ">=3.13"
dependencies = [ dependencies = [
"cryptography>=47.0.0", "cryptography>=46.0.0",
"requests>=2.31.0", "requests>=2.31.0",
"pydantic>=2.5.0", "pydantic>=2.5.0",
"httpx>=0.25.0", "httpx>=0.25.0",