Skip to content

Commit aaa3fc9

Browse files
authored
Merge branch 'master' into dependabot/uv/beautifulsoup4-4.13.4
2 parents 2fc6779 + 44c0e48 commit aaa3fc9

File tree

6 files changed

+505
-261
lines changed

6 files changed

+505
-261
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,44 @@
11
version: 2
2-
enable-beta-ecosystems: true
32
updates:
43
- package-ecosystem: github-actions
54
directory: "/"
65
schedule:
76
interval: weekly
7+
open-pull-requests-limit: 15
88
groups:
99
github-actions-updates:
10-
applies-to: version-updates
11-
dependency-type: development
12-
github-actions-security-updates:
13-
applies-to: security-updates
14-
dependency-type: development
10+
patterns:
11+
- "*"
1512
- package-ecosystem: pip
1613
directory: "/.github/workflows"
1714
schedule:
1815
interval: weekly
16+
open-pull-requests-limit: 15
1917
groups:
2018
workflow-updates:
21-
applies-to: version-updates
22-
dependency-type: development
23-
workflow-security-updates:
24-
applies-to: security-updates
25-
dependency-type: development
19+
patterns:
20+
- "*"
2621
- package-ecosystem: pip
2722
directory: "/docs"
2823
schedule:
2924
interval: weekly
25+
open-pull-requests-limit: 15
3026
groups:
3127
doc-updates:
32-
applies-to: version-updates
33-
dependency-type: development
34-
doc-security-updates:
35-
applies-to: security-updates
36-
dependency-type: production
28+
patterns:
29+
- "*"
3730
- package-ecosystem: uv
3831
directory: "/"
3932
schedule:
4033
interval: weekly
34+
open-pull-requests-limit: 15
4135
versioning-strategy: lockfile-only
42-
allow:
43-
- dependency-type: "all"
44-
groups:
45-
pip-version-updates:
46-
applies-to: version-updates
47-
dependency-type: development
48-
pip-security-updates:
49-
applies-to: security-updates
50-
dependency-type: production
36+
# allow:
37+
# - dependency-type: "all"
38+
# groups:
39+
# uv-version-updates:
40+
# applies-to: version-updates
41+
# dependency-type: development
42+
# uv-security-updates:
43+
# applies-to: security-updates
44+
# dependency-type: production

.github/workflows/constraints.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip==25.1.1
22
nox==2025.5.1
3-
nox-uv==0.3.0
4-
uv==0.7.6
3+
nox-uv==0.6.0
4+
uv==0.7.13
55
virtualenv==20.31.2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262

6363
- name: Publish the release notes
6464
id: create-release
65-
uses: release-drafter/release-drafter@v6.0.0
65+
uses: release-drafter/release-drafter@v6.1.0
6666
with:
6767
publish: ${{ steps.check-version.outputs.tag != '' }}
6868
tag: ${{ steps.check-version.outputs.tag }}

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sphinx==8.2.3
2-
sphinx-autobuild==2024.9.19
2+
sphinx-autobuild==2024.10.3
33
sphinx-autodoc-typehints==2.4.4
44
sphinx-rtd-theme==3.0.2
55
sphinxcontrib-httpdomain==1.8.1

src/audible/auth.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,10 @@ def to_file(
646646
raise ValueError("No password provided")
647647

648648
crypter.to_file(
649-
json_data, filename=target_file, encryption=encryption, indent=indent
649+
json_data,
650+
filename=target_file,
651+
encryption=encryption, # type: ignore[arg-type]
652+
indent=indent,
650653
)
651654

652655
logger.info("saved data to file %s", target_file)

0 commit comments

Comments
 (0)