Skip to content

Commit 3cbf16d

Browse files
committed
Fixed missing dependencies
Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
1 parent e726e82 commit 3cbf16d

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

dev-requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ coveralls>=3.3.0
3737
# Safety CI by pyup.io
3838
# Safety is run only on Python >=3.7
3939
# Safety 3.0.0 requires exact versions of authlib==1.2.0 and jwt==1.3.1.
40-
safety>=3.0.1; python_version >= '3.7'
40+
# Safety 3.3.0 pulls in Levenshtein, and will remove it in 3.3.1.
41+
safety>=3.0.1,!=3.3.0; python_version >= '3.7'
4142

4243
# Click is used by safety
4344
# safety 2.2.0 requires Click >=8.0.2

docs/changes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ Released: not yet
1818

1919
* Addressed safety issues up to 2025-01-29.
2020

21+
* Dev: Excluded safety 3.3.0 to avoid new dependency to 'levenshtein' package,
22+
which will be removed again in safety 3.3.1.
23+
24+
* Dev: Added missing dependency to 'roman-numerals-py' package used by
25+
Sphinx >=8.2.0.
26+
2127
* Test: Fixed the issue that coveralls was not found in the test workflow on MacOS
2228
with Python 3.9-3.11, by running it without login shell. Added Python 3.11 on
2329
MacOS to the normal tests.

minimum-constraints.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ requests-mock==1.6.0
218218
requests-toolbelt==0.8.0
219219
rfc3986==1.3.0
220220
rich==12.0.0
221+
roman-numerals-py==1.0.0; python_version >= '3.9' # used by Sphinx>=8.2.0
221222
smmap==3.0.1
222223
snowballstemmer==2.0.0
223224
toml==0.10.0

0 commit comments

Comments
 (0)