This commit is contained in:
2025-10-31 00:04:32 +11:00
parent 3b36a3137e
commit 40c2fcb382
2 changed files with 24 additions and 24 deletions
+12 -12
View File
@@ -8,20 +8,20 @@ description = "YouMusic Backend API"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]==0.30.6",
"python-multipart==0.0.12",
"aiofiles==24.1.0",
"aiohttp==3.10.5",
"uvicorn[standard]>=0.30.6",
"python-multipart>=0.0.12",
"aiofiles>=24.1.0",
"aiohttp>=3.10.5",
"yt-dlp>=2025.10.22",
"mutagen==1.47.0",
"pillow==10.4.0",
"python-jose[cryptography]==3.3.0",
"mutagen>=1.47.0",
"pillow>=10.4.0",
"python-jose[cryptography]>=3.3.0",
"pydantic>=2.9.2",
"pydantic-settings==2.5.2",
"sqlalchemy==2.0.35",
"aiosqlite==0.20.0",
"alembic==1.17.1",
"apscheduler==3.10.4",
"pydantic-settings>=2.5.2",
"sqlalchemy>=2.0.35",
"aiosqlite>=0.20.0",
"alembic>=1.17.1",
"apscheduler>=3.10.4",
]
[tool.uv]
+12 -12
View File
@@ -1149,20 +1149,20 @@ dependencies = [
[package.metadata]
requires-dist = [
{ name = "aiofiles", specifier = "==24.1.0" },
{ name = "aiohttp", specifier = "==3.10.5" },
{ name = "aiosqlite", specifier = "==0.20.0" },
{ name = "alembic", specifier = "==1.17.1" },
{ name = "apscheduler", specifier = "==3.10.4" },
{ name = "aiofiles", specifier = ">=24.1.0" },
{ name = "aiohttp", specifier = ">=3.10.5" },
{ name = "aiosqlite", specifier = ">=0.20.0" },
{ name = "alembic", specifier = ">=1.17.1" },
{ name = "apscheduler", specifier = ">=3.10.4" },
{ name = "fastapi", specifier = ">=0.115.0" },
{ name = "mutagen", specifier = "==1.47.0" },
{ name = "pillow", specifier = "==10.4.0" },
{ name = "mutagen", specifier = ">=1.47.0" },
{ name = "pillow", specifier = ">=10.4.0" },
{ name = "pydantic", specifier = ">=2.9.2" },
{ name = "pydantic-settings", specifier = "==2.5.2" },
{ name = "python-jose", extras = ["cryptography"], specifier = "==3.3.0" },
{ name = "python-multipart", specifier = "==0.0.12" },
{ name = "sqlalchemy", specifier = "==2.0.35" },
{ name = "uvicorn", extras = ["standard"], specifier = "==0.30.6" },
{ name = "pydantic-settings", specifier = ">=2.5.2" },
{ name = "python-jose", extras = ["cryptography"], specifier = ">=3.3.0" },
{ name = "python-multipart", specifier = ">=0.0.12" },
{ name = "sqlalchemy", specifier = ">=2.0.35" },
{ name = "uvicorn", extras = ["standard"], specifier = ">=0.30.6" },
{ name = "yt-dlp", specifier = ">=2025.10.22" },
]