security: add timeouts to HTTP requests and fix temp directory usage
Some checks failed
CLI Tests / test-cli (push) Failing after 2m46s
Documentation Validation / validate-docs (push) Successful in 7s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Integration Tests / test-service-integration (push) Failing after 4s
Package Tests / Python package - aitbc-agent-sdk (push) Successful in 28s
Package Tests / Python package - aitbc-core (push) Failing after 10s
Package Tests / Python package - aitbc-crypto (push) Successful in 18s
Package Tests / Python package - aitbc-sdk (push) Failing after 18s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 7s
Package Tests / JavaScript package - aitbc-token (push) Failing after 15s
Python Tests / test-python (push) Failing after 2m51s
Security Scanning / security-scan (push) Failing after 48s
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Failing after 11s
Smart Contract Tests / test-solidity (map[name:zk-circuits path:apps/zk-circuits]) (push) Failing after 46s
Smart Contract Tests / lint-solidity (push) Failing after 11s
Some checks failed
CLI Tests / test-cli (push) Failing after 2m46s
Documentation Validation / validate-docs (push) Successful in 7s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Integration Tests / test-service-integration (push) Failing after 4s
Package Tests / Python package - aitbc-agent-sdk (push) Successful in 28s
Package Tests / Python package - aitbc-core (push) Failing after 10s
Package Tests / Python package - aitbc-crypto (push) Successful in 18s
Package Tests / Python package - aitbc-sdk (push) Failing after 18s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 7s
Package Tests / JavaScript package - aitbc-token (push) Failing after 15s
Python Tests / test-python (push) Failing after 2m51s
Security Scanning / security-scan (push) Failing after 48s
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Failing after 11s
Smart Contract Tests / test-solidity (map[name:zk-circuits path:apps/zk-circuits]) (push) Failing after 46s
Smart Contract Tests / lint-solidity (push) Failing after 11s
- Add 30-second timeouts to all HTTP requests in enterprise_cli.py (5 instances) - Add 30-second timeouts to all HTTP requests in miner_management.py (4 instances) - Replace hardcoded /tmp with tempfile.gettempdir() in extended_features.py - Fix requires-python constraint from ^3.13 to >=3.13 in aitbc-core - Add missing dependencies: pynacl to aitbc-crypto, httpx to aitbc-sdk - Add poetry packages configuration to aitbc-core pyproject.toml - Add type
This commit is contained in:
@@ -6,7 +6,7 @@ authors = [
|
||||
{name = "AITBC Team", email = "team@aitbc.dev"}
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = "^3.13"
|
||||
requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"cryptography>=41.0.0",
|
||||
"sqlmodel>=0.0.14",
|
||||
@@ -19,3 +19,8 @@ dependencies = [
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.poetry]
|
||||
packages = [
|
||||
{ include = "aitbc_core", from = "src" }
|
||||
]
|
||||
|
||||
@@ -8,7 +8,8 @@ authors = [
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"cryptography>=41.0.0"
|
||||
"cryptography>=41.0.0",
|
||||
"pynacl>=1.5.0"
|
||||
]
|
||||
|
||||
[build-system]
|
||||
|
||||
@@ -10,7 +10,8 @@ requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"cryptography>=41.0.0",
|
||||
"requests>=2.31.0",
|
||||
"pydantic>=2.5.0"
|
||||
"pydantic>=2.5.0",
|
||||
"httpx>=0.25.0"
|
||||
]
|
||||
|
||||
[build-system]
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"name": "@aitbc/aitbc-token",
|
||||
"version": "0.2.3",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"description": "AITBC Solidity contracts for attested receipt-based minting",
|
||||
"scripts": {
|
||||
"build": "hardhat compile",
|
||||
|
||||
Reference in New Issue
Block a user