ci: migrate from requirements.txt to poetry.lock as source of truth
Some checks failed
Coverage Phase 1 (70% Target) / test-coverage-70 (push) Has been cancelled
Coverage Phase 2 (85% Target) / test-coverage-85 (push) Has been cancelled
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
CLI Tests / test-cli (push) Has been cancelled
Package Tests / Python package - aitbc-agent-sdk (push) Has been cancelled
Package Tests / Python package - aitbc-core (push) Has been cancelled
Package Tests / Python package - aitbc-crypto (push) Has been cancelled
Package Tests / Python package - aitbc-sdk (push) Has been cancelled
Package Tests / JavaScript package - aitbc-sdk-js (push) Has been cancelled
Package Tests / JavaScript package - aitbc-token (push) Has been cancelled
Smart Contract Tests / test-solidity (map[name:aitbc-contracts path:contracts]) (push) Has been cancelled
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Has been cancelled
Smart Contract Tests / test-foundry (push) Has been cancelled
Smart Contract Tests / lint-solidity (push) Has been cancelled
Smart Contract Tests / deploy-contracts (push) Has been cancelled

- Updated CI workflows to track poetry.lock instead of requirements.txt
- Removed check-requirements-sync.py step from python-tests.yml
- Updated dependency_scanner.py default from requirements.txt to pyproject.toml
- Replaced all print() with click.echo() in deploy_edge_node.py (CLI script)
- Replaced print() with logger.warning() in zk_cache.py
- Updated setup.py files to read dependencies from pyproject.toml via tomli
- Removed
This commit is contained in:
aitbc
2026-05-25 15:10:12 +02:00
parent 8ef559a12c
commit 214c1b65ec
107 changed files with 808 additions and 19723 deletions

View File

@@ -24,7 +24,7 @@ hermes execute --agent GenesisAgent --task pull_latest_code || {
echo "3. Installing/updating dependencies via hermes GenesisAgent..."
hermes execute --agent GenesisAgent --task update_dependencies || {
echo "⚠️ hermes dependency update failed - using manual method"
/opt/aitbc/venv/bin/pip install -r requirements.txt
cd /opt/aitbc && /opt/aitbc/venv/bin/poetry install
}
# 4. Create required directories (via hermes)

View File

@@ -34,7 +34,7 @@ hermes execute --agent FollowerAgent --task pull_latest_code --node aitbc1 || {
echo "4. Installing/updating dependencies on aitbc1 via hermes FollowerAgent..."
hermes execute --agent FollowerAgent --task update_dependencies --node aitbc1 || {
echo "⚠️ hermes dependency update failed - using SSH method"
ssh aitbc1 '/opt/aitbc/venv/bin/pip install -r requirements.txt'
ssh aitbc1 'cd /opt/aitbc && /opt/aitbc/venv/bin/poetry install'
}
# 5. Create required directories on aitbc1 (via hermes)