chore: Update project dependencies and deployment script.

This commit is contained in:
xucheng 2026-02-26 11:54:24 +08:00
parent fb89ae2d51
commit afa2d7d0ef
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ echo -e "${INFO} 1/6 检查并安装系统依赖..."
if command -v apt-get &> /dev/null; then if command -v apt-get &> /dev/null; then
sudo apt-get update sudo apt-get update
# 基础构建工具 # 基础构建工具
sudo apt-get install -y build-essential python3-dev pkg-config sudo apt-get install -y build-essential python3-dev pkg-config libpq-dev
# WeasyPrint 依赖 # WeasyPrint 依赖
sudo apt-get install -y libpango-1.0-0 libpangoft2-1.0-0 libgdk-pixbuf-2.0-0 shared-mime-info sudo apt-get install -y libpango-1.0-0 libpangoft2-1.0-0 libgdk-pixbuf-2.0-0 shared-mime-info
# Python 虚拟环境支持 # Python 虚拟环境支持

View File

@ -15,7 +15,7 @@ uvicorn[standard]==0.40.0
# -------------------------------------------- # --------------------------------------------
sqlalchemy==2.0.45 sqlalchemy==2.0.45
asyncpg==0.30.0 asyncpg==0.30.0
psycopg2-binary==2.9.9 psycopg2-binary==2.9.10
# -------------------------------------------- # --------------------------------------------
# 数据处理 # 数据处理