Skip to content

Commit f1a01df

Browse files
committed
Fixed safety issued and missing dependencies
Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
1 parent 5c8eed4 commit f1a01df

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.safety-policy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ security:
6868
reason: Fixed virtualenv version 20.26.6 requires Python>=3.8 and is used there
6969
74735:
7070
reason: Fixed jinja2 version 3.1.5 requires Python>=3.7 and is used there
71+
75180:
72+
reason: Fixed pip version 25.0 requires Python>=3.8 and is used there
7173

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

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-01-29.
19+
* Addressed safety issues up to 2025-03-01.
2020

2121
* Dev: Added missing dependencies for development.
2222

minimum-constraints.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
# minimum, and then increase it to the first version that introduced support
1111
# for a particular Python version.
1212
pip==21.3.1; python_version == '3.6'
13-
pip==23.3; python_version >= '3.7'
13+
pip==23.3; python_version == '3.7'
14+
pip==25.0; python_version >= '3.8'
1415

1516
# setuptools 59.7.0 removed support for py36
1617
setuptools==59.6.0; python_version == '3.6'
@@ -205,6 +206,7 @@ keyring==17.0.0
205206
levenshtein==0.25.1
206207
MarkupSafe==2.0.0
207208
more-itertools==5.0.0
209+
nltk==3.9
208210
pkginfo==1.4.2
209211
py==1.11.0
210212
pydantic==1.10.13

0 commit comments

Comments
 (0)