CI/CD Updates (resolves PR #28, #29, #30): - Update actions/github-script from v7 to v8 (PR #30) - Update actions/upload-artifact from v4 to v7 (PR #29) - Update ossf/scorecard-action from v2.3.3 to v2.4.3 (PR #28) Production Updates (resolves PR #38): - Update orjson from 3.11.5 to 3.11.6 in blockchain-node - Update black from 24.4.2 to 26.3.1 in aitbc-sdk All changes are safe minor version updates with no breaking changes. This will automatically close all remaining Dependabot PRs when pushed.
42 lines
984 B
TOML
42 lines
984 B
TOML
[tool.poetry]
|
|
name = "aitbc-blockchain-node"
|
|
version = "0.1.0"
|
|
description = "AITBC blockchain node service"
|
|
authors = ["AITBC Team"]
|
|
packages = [
|
|
{ include = "aitbc_chain", from = "src" }
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
fastapi = "^0.111.0"
|
|
uvicorn = { extras = ["standard"], version = "^0.30.0" }
|
|
sqlmodel = "^0.0.16"
|
|
sqlalchemy = {extras = ["asyncio"], version = "^2.0.47"}
|
|
alembic = "^1.13.1"
|
|
aiosqlite = "^0.20.0"
|
|
websockets = "^12.0"
|
|
pydantic = "^2.7.0"
|
|
pydantic-settings = "^2.2.1"
|
|
orjson = "^3.11.6"
|
|
python-dotenv = "^1.0.1"
|
|
httpx = "^0.27.0"
|
|
uvloop = ">=0.22.0"
|
|
rich = "^13.7.1"
|
|
cryptography = "^46.0.5"
|
|
asyncpg = ">=0.29.0"
|
|
requests = "^2.32.5"
|
|
# Pin starlette to a version with Broadcast (removed in 0.38)
|
|
starlette = ">=0.37.2,<0.38.0"
|
|
|
|
[tool.poetry.extras]
|
|
uvloop = ["uvloop"]
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.2.0"
|
|
pytest-asyncio = "^0.23.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|