Skip to content

Commit 23b5909

Browse files
authored
Addressed safety issues (#2134)
Signed-off-by: Andreas Maier <maiera@de.ibm.com>
1 parent 17ceb48 commit 23b5909

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

.safety-policy-develop.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ security:
3838
reason: Fixed filelock version 3.20.3 requires Python>=3.10 and is used there
3939
84415:
4040
reason: Fixed filelock version 3.20.3 requires Python>=3.10 and is used there
41+
# Need to comment out due to issue https://github.com/pyupio/safety/issues/847
42+
# SFTY-20260218-01424:
43+
# reason: Fixed nltk version 3.9.3 requires Python>=3.10 and is used there
4144

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

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-26.
1+
Fixed safety issues up to 2026-03-29.

minimum-constraints-develop.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ cachetools==5.3.2
165165
Click==8.0.2
166166
clint==0.5.1
167167
configparser==4.0.2
168-
cryptography==44.0.1 # used by Authlib, which is used by safety
168+
cryptography==46.0.5 # used by Authlib, which is used by safety
169169
dataclasses==0.8
170170
decorator==4.0.11
171171
defusedxml==0.7.1
@@ -188,7 +188,8 @@ MarkupSafe==2.0.0
188188
mistune==2.0.3
189189
nest-asyncio==1.5.4
190190
# nltk 3.9.3 fixes CVE-2025-14009
191-
nltk==3.9.2; python_version == '3.9'
191+
# Need to comment out nltk==3.9.2 due to issue https://github.com/pyupio/safety/issues/847
192+
# nltk==3.9.2; python_version == '3.9'
192193
nltk==3.9.3; python_version >= '3.10'
193194
# nose is used by older versions of notebook, e.g. 4.3.1
194195
nose==1.3.7

0 commit comments

Comments
 (0)