File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1+ Fixed safety issues up to 2026-02-09.
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ typer-cli>=0.16.0
4343typer-slim >= 0.16.0
4444# safety 3.4.0 depends on psutil~=6.1.0
4545psutil ~= 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
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ dparse==0.6.4
3838ruamel.yaml==0.17.21
3939click==8.0.2
4040Authlib==1.6.5
41- marshmallow==3.15.0
41+ marshmallow==3.26.2
4242pydantic==2.8.0; python_version == '3.8'
4343pydantic==2.12.0; python_version >= '3.9'
4444pydantic_core==2.20.0; python_version == '3.8'
@@ -47,7 +47,8 @@ typer==0.16.0
4747typer-cli==0.16.0
4848typer-slim==0.16.0
4949psutil==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
5354PyYAML==6.0.2
@@ -166,7 +167,7 @@ tenacity==8.5.0
166167toml==0.10.0
167168tomli==2.0.1
168169tqdm==4.66.3
169- urllib3==2.5.0
170+ urllib3==2.6.3
170171wcwidth==0.1.7
171172webencodings==0.5.1
172173zipp==3.19.1
You can’t perform that action at this time.
0 commit comments