- Node.js: 22 → 24 (Active LTS) - PostgreSQL: 15 → 18 - FastAPI: 0.115.6 → 0.128.2 - Uvicorn: 0.34.0 → 0.40.0 - SQLAlchemy: 2.0.36 → 2.0.46 - Alembic: 1.14.0 → 1.18.3 - Pydantic: 2.10.4 → 2.12.5 - pandas: 2.2.3 → 2.3.3 - pykrx: 1.0.45 → 1.2.3 - React: 19.2.3 → 19.2.4 Breaking changes: - Migrate from python-jose to PyJWT for JWT handling - numpy downgraded to 1.26.4 for pykrx compatibility Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
40 lines
845 B
TOML
40 lines
845 B
TOML
[project]
|
|
name = "galaxis-po-backend"
|
|
version = "1.0.0"
|
|
description = "Galaxis Portfolio Optimization Backend"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi==0.128.2",
|
|
"uvicorn[standard]==0.40.0",
|
|
"sqlalchemy==2.0.46",
|
|
"alembic==1.18.3",
|
|
"psycopg2-binary==2.9.10",
|
|
"pydantic[email]==2.12.5",
|
|
"pydantic-settings==2.12.0",
|
|
"PyJWT[crypto]==2.11.0",
|
|
"passlib[bcrypt]==1.7.4",
|
|
"bcrypt==4.2.1",
|
|
"python-multipart==0.0.22",
|
|
"apscheduler==3.11.2",
|
|
"setuptools",
|
|
"pykrx==1.2.3",
|
|
"requests==2.32.5",
|
|
"beautifulsoup4==4.14.3",
|
|
"lxml==6.0.2",
|
|
"pandas==2.3.3",
|
|
"numpy==1.26.4",
|
|
"httpx==0.28.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest==8.3.4",
|
|
"pytest-asyncio==1.1.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest==8.3.4",
|
|
"pytest-asyncio==1.1.0",
|
|
]
|