mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-05 23:47:41 +08:00
Merge branch 'rfc-python-bump-312' into v2
This commit is contained in:
@@ -1,11 +1,6 @@
|
|||||||
name: MoviePilot Builder v2
|
name: MoviePilot Builder v2
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- v2
|
|
||||||
paths:
|
|
||||||
- 'version.py'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Docker-build:
|
Docker-build:
|
||||||
@@ -27,8 +22,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
images: ${{ secrets.DOCKER_USERNAME }}/moviepilot-v2
|
images: ${{ secrets.DOCKER_USERNAME }}/moviepilot-v2
|
||||||
tags: |
|
tags: |
|
||||||
type=raw,value=${{ env.app_version }}
|
type=raw,value=beta
|
||||||
type=raw,value=latest
|
|
||||||
|
|
||||||
- name: Set Up QEMU
|
- name: Set Up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
@@ -49,27 +43,8 @@ jobs:
|
|||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
platforms: |
|
platforms: |
|
||||||
linux/amd64
|
linux/amd64
|
||||||
linux/arm64/v8
|
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
cache-from: type=gha, scope=${{ github.workflow }}-docker
|
cache-from: type=gha, scope=${{ github.workflow }}-docker-beta
|
||||||
cache-to: type=gha, scope=${{ github.workflow }}-docker
|
cache-to: type=gha, scope=${{ github.workflow }}-docker-beta
|
||||||
|
|
||||||
- name: Delete Release
|
|
||||||
uses: dev-drprasad/delete-tag-and-release@v1.1
|
|
||||||
with:
|
|
||||||
tag_name: ${{ env.app_version }}
|
|
||||||
delete_release: true
|
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Generate Release
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
tag_name: v${{ env.app_version }}
|
|
||||||
name: v${{ env.app_version }}
|
|
||||||
draft: false
|
|
||||||
prerelease: false
|
|
||||||
make_latest: false
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
FROM python:3.11.4-slim-bookworm
|
FROM python:3.12.8-slim-bookworm
|
||||||
ENV LANG="C.UTF-8" \
|
ENV LANG="C.UTF-8" \
|
||||||
TZ="Asia/Shanghai" \
|
TZ="Asia/Shanghai" \
|
||||||
HOME="/moviepilot" \
|
HOME="/moviepilot" \
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
在开始之前,请确保您的系统已安装以下软件:
|
在开始之前,请确保您的系统已安装以下软件:
|
||||||
|
|
||||||
- **Python 3.11 或更高版本**
|
- **Python 3.12 或更高版本**
|
||||||
- **pip** (Python 包管理器)
|
- **pip** (Python 包管理器)
|
||||||
- **Git** (用于版本控制)
|
- **Git** (用于版本控制)
|
||||||
|
|
||||||
|
|||||||
+9
-10
@@ -23,17 +23,17 @@ APScheduler~=3.10.1
|
|||||||
cryptography~=43.0.0
|
cryptography~=43.0.0
|
||||||
pytz~=2023.3
|
pytz~=2023.3
|
||||||
pycryptodome~=3.20.0
|
pycryptodome~=3.20.0
|
||||||
qbittorrent-api==2024.11.69
|
qbittorrent-api==2024.11.70
|
||||||
plexapi~=4.15.16
|
plexapi~=4.16.0
|
||||||
transmission-rpc~=4.3.0
|
transmission-rpc~=4.3.0
|
||||||
Jinja2~=3.1.4
|
Jinja2~=3.1.4
|
||||||
pyparsing~=3.0.9
|
pyparsing~=3.0.9
|
||||||
func_timeout==4.3.5
|
func_timeout==4.3.5
|
||||||
bs4~=0.0.1
|
bs4~=0.0.2
|
||||||
beautifulsoup4~=4.12.2
|
beautifulsoup4~=4.12.3
|
||||||
pillow~=10.4.0
|
pillow~=10.4.0
|
||||||
pyTelegramBotAPI~=4.12.0
|
pyTelegramBotAPI~=4.12.0
|
||||||
playwright~=1.37.0
|
playwright~=1.49.1
|
||||||
cf-clearance~=0.31.0
|
cf-clearance~=0.31.0
|
||||||
torrentool~=1.2.0
|
torrentool~=1.2.0
|
||||||
slack-bolt~=1.18.0
|
slack-bolt~=1.18.0
|
||||||
@@ -50,7 +50,7 @@ cacheout~=0.14.1
|
|||||||
click~=8.1.6
|
click~=8.1.6
|
||||||
requests-cache~=0.5.2
|
requests-cache~=0.5.2
|
||||||
parse~=1.19.0
|
parse~=1.19.0
|
||||||
docker~=6.1.3
|
docker~=7.1.0
|
||||||
pywin32==306; platform_system == "Windows"
|
pywin32==306; platform_system == "Windows"
|
||||||
cachetools~=5.3.1
|
cachetools~=5.3.1
|
||||||
fast-bencode~=1.1.3
|
fast-bencode~=1.1.3
|
||||||
@@ -58,9 +58,8 @@ pystray~=0.19.5
|
|||||||
pyotp~=2.9.0
|
pyotp~=2.9.0
|
||||||
Pinyin2Hanzi~=0.1.1
|
Pinyin2Hanzi~=0.1.1
|
||||||
pywebpush~=2.0.0
|
pywebpush~=2.0.0
|
||||||
python-115==0.0.9.8.8.2
|
python-115==0.0.9.8.8.4
|
||||||
p115client==0.0.3.8.3.3
|
|
||||||
python-cookietools==0.0.2.1
|
|
||||||
aligo~=6.2.4
|
aligo~=6.2.4
|
||||||
aiofiles~=24.1.0
|
aiofiles~=24.1.0
|
||||||
jieba~=0.42.1
|
jieba~=0.42.1
|
||||||
|
setuptools~=75.6.0
|
||||||
|
|||||||
Reference in New Issue
Block a user