mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-12-10 05:46:35 +08:00
Merge branch 'develop' into fix-upload-speed-limit-reached
This commit is contained in:
commit
76eea80a2a
10 changed files with 19 additions and 19 deletions
4
.github/workflows/develop.yml
vendored
4
.github/workflows/develop.yml
vendored
|
|
@ -35,7 +35,7 @@ jobs:
|
|||
ENTRY: qbit_manage.py
|
||||
steps:
|
||||
- name: Check Out Repo
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
ref: develop
|
||||
|
||||
|
|
@ -404,7 +404,7 @@ jobs:
|
|||
OWNER: '${{ github.repository_owner }}'
|
||||
|
||||
- name: Check Out Repo
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
ref: develop
|
||||
|
||||
|
|
|
|||
4
.github/workflows/docs.yml
vendored
4
.github/workflows/docs.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
|||
if: github.event_name != 'gollum'
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
- name: Sync docs to wiki
|
||||
uses: newrelic/wiki-sync-action@main
|
||||
with:
|
||||
|
|
@ -35,7 +35,7 @@ jobs:
|
|||
if: github.event_name == 'gollum'
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
token: ${{ secrets.PAT }} # allows us to push back to repo
|
||||
ref: develop
|
||||
|
|
|
|||
2
.github/workflows/pypi-publish.yml
vendored
2
.github/workflows/pypi-publish.yml
vendored
|
|
@ -24,7 +24,7 @@ jobs:
|
|||
id-token: write # Required for trusted publishing to PyPI
|
||||
steps:
|
||||
- name: Check Out Repo
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v6
|
||||
|
|
|
|||
2
.github/workflows/tag.yml
vendored
2
.github/workflows/tag.yml
vendored
|
|
@ -9,7 +9,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
token: ${{ secrets.PAT }}
|
||||
fetch-depth: 2
|
||||
|
|
|
|||
2
.github/workflows/update-develop-branch.yml
vendored
2
.github/workflows/update-develop-branch.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Check Out Repo
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
|
||||
fetch-depth: 0
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
ref: ${{ github.event.inputs.targetBranch || github.ref_name }}
|
||||
|
||||
|
|
|
|||
6
.github/workflows/version.yml
vendored
6
.github/workflows/version.yml
vendored
|
|
@ -35,7 +35,7 @@ jobs:
|
|||
ENTRY: qbit_manage.py
|
||||
steps:
|
||||
- name: Check Out Repo
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v6
|
||||
|
|
@ -432,7 +432,7 @@ jobs:
|
|||
OWNER: '${{ github.repository_owner }}'
|
||||
|
||||
- name: Check Out Repo
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
|
|
@ -502,7 +502,7 @@ jobs:
|
|||
contents: write
|
||||
steps:
|
||||
- name: Check Out Repo
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Get the version
|
||||
id: get_version
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"master": {
|
||||
"qbit": "v5.1.2",
|
||||
"qbitapi": "2025.7.0"
|
||||
"qbit": "v5.1.3",
|
||||
"qbitapi": "2025.11.0"
|
||||
},
|
||||
"develop": {
|
||||
"qbit": "v5.1.2",
|
||||
"qbitapi": "2025.7.0"
|
||||
"qbit": "v5.1.4",
|
||||
"qbitapi": "2025.11.1"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
4.6.4
|
||||
4.6.5-develop2
|
||||
|
|
|
|||
|
|
@ -20,11 +20,11 @@ dependencies = [
|
|||
"argon2-cffi==25.1.0",
|
||||
"bencodepy==0.9.5",
|
||||
"croniter==6.0.0",
|
||||
"fastapi==0.121.2",
|
||||
"fastapi==0.121.3",
|
||||
"GitPython==3.1.45",
|
||||
"humanize==4.13.0",
|
||||
"pytimeparse2==1.7.1",
|
||||
"qbittorrent-api==2025.11.0",
|
||||
"qbittorrent-api==2025.11.1",
|
||||
"requests==2.32.5",
|
||||
"retrying==1.4.2",
|
||||
"ruamel.yaml==0.18.16",
|
||||
|
|
@ -42,7 +42,7 @@ Repository = "https://github.com/StuffAnThings/qbit_manage"
|
|||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"pre-commit==4.3.0",
|
||||
"ruff==0.14.5",
|
||||
"ruff==0.14.6",
|
||||
]
|
||||
|
||||
[tool.ruff]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue