Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
# Python dependencies (pyproject.toml managed by Poetry)
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"

# GitHub Actions workflows
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

# Docker base image (Dockerfile)
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/win-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Build Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Create venv
run: |
Invoke-WebRequest -Uri "https://github.com/winpython/winpython/releases/download/16.6.20250620/Winpython64-3.12.10.1dotrc.zip" -OutFile winpy.zip
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
rm wrapper-manager-image.zip

- name: Upload CLI artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: AppleMusicDecrypt-Windows
path: .
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
httpx = "^0.28.1"
regex = "^2025.9.18"
regex = "^2026.1.15"
pydantic = "^2.12.3"
loguru = "^0.7.2"
six = "^1.16.0"
Expand All @@ -25,14 +25,14 @@ grpcio-tools = "^1.75.1"
pywidevine = {git = "https://github.com/WorldObservationLog/pywidevine"}
creart = "^0.3.0"
mutagen = "^1.47.0"
hishel = "^0.1.5"
hishel = "^1.1.9"
async-lru = "^2.0.5"
tabulate = "^0.9.0"


[tool.poetry.group.server.dependencies]
fastapi = "^0.109.0"
uvicorn = "^0.27.0"
fastapi = "^0.129.0"
uvicorn = "^0.41.0"


[tool.poetry.group.telegram_bot.dependencies]
Expand Down