Skip to content

Commit e9675b9

Browse files
committed
Addressed safety issues and issue with nltk version
Signed-off-by: Andreas Maier <maiera@de.ibm.com>
1 parent 0102cf0 commit e9675b9

6 files changed

Lines changed: 13 additions & 9 deletions

.safety-policy-develop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ security:
3636
reason: Fixed filelock version 3.20.1 requires Python>=3.10 and is used there
3737
84183:
3838
reason: Fixed filelock version 3.20.3 requires Python>=3.10 and is used there
39+
84415:
40+
reason: Fixed filelock version 3.20.3 requires Python>=3.10 and is used there
3941

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

base-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
pip>=25.2
99
setuptools>=78.1.1
1010
setuptools-scm[toml]>=9.2.0
11-
wheel>=0.41.3
11+
wheel>=0.46.2

changes/noissue.safety.fix.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fixed safety issues up to 2026-02-11.
1+
Fixed safety issues up to 2026-02-26.

dev-requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# PEP517 package builder, used in Makefile
88
build>=1.0.0
99
# build requires virtualenv.cli_run which was added in virtualenv 20.1
10-
virtualenv>=20.26.6
10+
virtualenv>=20.36.1
1111
pyproject-hooks>=1.1.0
1212

1313
# six (only needed by packages that still support Python 2)
@@ -62,11 +62,11 @@ safety-schemas>=0.0.16
6262
dparse>=0.6.4
6363
ruamel.yaml>=0.17.21
6464
click>=8.0.2
65-
Authlib>=1.6.5
65+
Authlib>=1.6.6
6666
marshmallow>=3.26.2
6767
pydantic>=2.12.0
6868
pydantic_core>=2.41.1
69-
#safety 3.6.1 depends on typer>=0.16.0
69+
# safety 3.6.1 depends on typer>=0.16.0
7070
typer>=0.16.0
7171
typer-cli>=0.16.0
7272
typer-slim>=0.16.0

minimum-constraints-develop.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ six==1.16.0
1414
# PEP517 package builder, used in Makefile
1515
build==1.0.0
1616
# build requires virtualenv.cli_run which was added in virtualenv 20.1
17-
virtualenv==20.26.6
17+
virtualenv==20.36.1
1818
pyproject-hooks==1.1.0
1919

2020
# Change log
@@ -49,7 +49,7 @@ safety-schemas==0.0.16
4949
dparse==0.6.4
5050
ruamel.yaml==0.17.21
5151
click==8.0.2
52-
Authlib==1.6.5
52+
Authlib==1.6.6
5353
marshmallow==3.26.2
5454
pydantic==2.12.0
5555
pydantic_core==2.41.1
@@ -187,7 +187,9 @@ MarkupSafe==2.0.0
187187
# nbconvert 7.2.10 depends on mistune<3 and >=2.0.3
188188
mistune==2.0.3
189189
nest-asyncio==1.5.4
190-
nltk==3.9.1
190+
# nltk 3.9.3 fixes CVE-2025-14009
191+
nltk==3.9.2; python_version == '3.9'
192+
nltk==3.9.3; python_version >= '3.10'
191193
# nose is used by older versions of notebook, e.g. 4.3.1
192194
nose==1.3.7
193195
pandocfilters==1.4.1

minimum-constraints-install.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pip==25.2
1111
setuptools==78.1.1
1212
# Note on not specifying 'setuptools-scm[toml]': Extras cannot be in constraints files
1313
setuptools-scm==9.2.0
14-
wheel==0.41.3
14+
wheel==0.46.2
1515

1616

1717
# Direct dependencies for install (must be consistent with requirements.txt)

0 commit comments

Comments
 (0)