Skip to content

Commit ee0c02c

Browse files
committed
Safety issues
Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
1 parent 3720b86 commit ee0c02c

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-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+
82754:
32+
reason: Fixed filelock version 3.20.1 requires Python>=3.10 and is used there
3133

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

changes/noissue.safety.fix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed safety issues up to 2026-02-09.

dev-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ typer-cli>=0.16.0
4343
typer-slim>=0.16.0
4444
# safety 3.4.0 depends on psutil~=6.1.0
4545
psutil~=6.1.0
46-
# safety 3.4.0 requires filelock~=3.16.1
47-
filelock~=3.16.1
46+
filelock>=3.16.1; python_version <= '3.9'
47+
filelock>=3.20.1; python_version >= '3.10'
4848

4949
# PyYAML is pulled in by dparse
5050
# PyYAML is also pulled in by dparse and python-coveralls

minimum-constraints-develop.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dparse==0.6.4
3838
ruamel.yaml==0.17.21
3939
click==8.0.2
4040
Authlib==1.6.5
41-
marshmallow==3.15.0
41+
marshmallow==3.26.2
4242
pydantic==2.8.0; python_version == '3.8'
4343
pydantic==2.12.0; python_version >= '3.9'
4444
pydantic_core==2.20.0; python_version == '3.8'
@@ -47,7 +47,8 @@ typer==0.16.0
4747
typer-cli==0.16.0
4848
typer-slim==0.16.0
4949
psutil==6.1.0
50-
filelock==3.16.1
50+
filelock==3.16.1; python_version <= '3.9'
51+
filelock==3.20.1; python_version >= '3.10'
5152

5253
# PyYAML is pulled in by dparse
5354
PyYAML==6.0.2
@@ -166,7 +167,7 @@ tenacity==8.5.0
166167
toml==0.10.0
167168
tomli==2.0.1
168169
tqdm==4.66.3
169-
urllib3==2.5.0
170+
urllib3==2.6.3
170171
wcwidth==0.1.7
171172
webencodings==0.5.1
172173
zipp==3.19.1

0 commit comments

Comments
 (0)