Skip to content

Commit bf0ac49

Browse files
committed
Addressed safety issues up to 2025-10-27
Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
1 parent b5dfc9d commit bf0ac49

File tree

7 files changed

+13
-5
lines changed

7 files changed

+13
-5
lines changed

.safety-policy-develop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ security:
2828
reason: The py package is no longer being fixed (latest version 1.11.0)
2929
70612:
3030
reason: Disputed issue in jinja2 version 3.1.3 - No known fix
31+
79756:
32+
reason: Fixed authlib version 1.6.4 requires Python>=3.9 and is used there
3133

3234
# Continue with exit code 0 when vulnerabilities are found.
3335
continue-on-vulnerability-error: False

.safety-policy-install.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ security:
2424
ignore-vulnerabilities:
2525
76752:
2626
reason: Fixed setuptools version 78.1.1 requires Python>=3.9 and pyproject.toml does not support python_version markers
27+
79883:
28+
reason: Fixed pip version 25.2 requires Python>=3.9 and is used there
2729

2830
# Continue with exit code 0 when vulnerabilities are found.
2931
continue-on-vulnerability-error: False

base-requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# Base dependencies (must be consistent with minimum-constraints-install.txt
66
# and build-system.requires in pyproject.toml)
77

8-
pip>=25.0
8+
pip>=25.0; python_version == '3.8'
9+
pip>=25.2; python_version >= '3.9'
910
setuptools>=70.0.0
1011
setuptools-scm[toml]>=9.2.0
1112
wheel>=0.41.3

dev-requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ safety-schemas>=0.0.14
2626
dparse>=0.6.4
2727
ruamel.yaml>=0.17.21
2828
click>=8.0.2
29-
Authlib>=1.3.1
29+
Authlib>=1.3.2; python_version == '3.8'
30+
Authlib>=1.6.5; python_version >= '3.9'
3031
marshmallow>=3.15.0
3132
pydantic>=2.8.0
3233
pydantic_core>=2.20.0

docs/changes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Released: not yet
1616

1717
**Bug fixes:**
1818

19-
* Addressed safety issues up to 2025-06-29.
19+
* Addressed safety issues up to 2025-10-27.
2020

2121
* Dev: Fixed issue where the package version used for distribution archive file
2222
names were generated inconsistently between setuptools_scm (used in Makefile)

minimum-constraints-develop.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ safety-schemas==0.0.14
3030
dparse==0.6.4
3131
ruamel.yaml==0.17.21
3232
click==8.0.2
33-
Authlib==1.3.1
33+
Authlib==1.3.2; python_version == '3.8'
34+
Authlib==1.6.5; python_version >= '3.9'
3435
marshmallow==3.15.0
3536
pydantic==2.8.0
3637
pydantic_core==2.20.0

minimum-constraints-install.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
# Base dependencies (must be consistent with base-requirements.txt)
99

10-
pip==25.0
10+
pip==25.0; python_version == '3.8'
11+
pip==25.2; python_version >= '3.9'
1112
setuptools==70.0.0
1213
# Note on not specifying 'setuptools-scm[toml]': Extras cannot be in constraints files
1314
setuptools-scm==9.2.0

0 commit comments

Comments
 (0)