File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change @@ -218,6 +218,7 @@ requests-mock==1.6.0
218218requests-toolbelt==0.8.0
219219rfc3986==1.3.0
220220rich==12.0.0
221+ roman-numerals-py==1.0.0; python_version >= '3.9' # used by Sphinx>=8.2.0
221222smmap==3.0.1
222223snowballstemmer==2.0.0
223224toml==0.10.0
You can’t perform that action at this time.
0 commit comments