Skip to content

Commit 6262bab

Browse files
tsbinnssseth
authored andcommitted
Fix changelog diff for dependency specifier updates (mne-tools#13645)
1 parent 8b6fa06 commit 6262bab

3 files changed

Lines changed: 1 addition & 7 deletions

File tree

doc/changes/dev/13611.dependency.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ Updated minimum for:
22

33
- Core dependency ``scipy >= 1.12``
44
- Optional dependency ``pandas >= 2.2``
5-
- Optional dependency ``pyobjc-framework-Cocoa >= 5.2.0; platform_system == "Darwin"``
65
- Optional dependency ``scikit-learn >= 1.4``
76

87
Changed implemented via CI action created by `Thomas Binns`_.

doc/changes/dev/13625.dependency.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

tools/dev/spec_zero_update_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def _prettify_requirement(req):
211211
specifiers = specifiers.rstrip(",") # remove trailing comma
212212
req.specifier = SpecifierSet() # remove ugly specifiers (from str repr)
213213
# Add pretty specifiers to name alongside trailing info (extras, markers, url)
214-
return req.name + specifiers + str(req)[len(req.name) :]
214+
return (req.name + specifiers + str(req)[len(req.name) :]).replace('"', "'")
215215

216216

217217
def _add_date_comment(dependency, min_ver_release, next_ver, next_ver_release):

0 commit comments

Comments
 (0)