Skip to content

Commit 08024de

Browse files
committed
Update CHANGELOG
1 parent 1b0f486 commit 08024de

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ Fixes:
2727
* #873: Handle 'd' when mapping colors
2828
* #874: Avoid breakage with six's importer
2929

30+
Changes to dependencies:
31+
32+
* curtsies >= 0.3.5 is now required
33+
* pyxdg is now required
34+
* wcwidth has been replaced with cwcwidth
35+
3036
0.20.1
3137
------
3238

bpython/test/test_curtsies_painting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ def test_unhighlight_paren_bugs(self):
659659
cyan(">>> ") + on_magenta(bold(red("("))),
660660
green("... ") + on_magenta(bold(red(")"))),
661661
],
662-
width=32
662+
width=32,
663663
)
664664
self.assert_paint(screen, (1, 5))
665665

@@ -670,7 +670,7 @@ def test_unhighlight_paren_bugs(self):
670670
cyan(">>> ") + yellow("("),
671671
green("... ") + yellow(")") + bold(cyan(" ")),
672672
],
673-
width=32
673+
width=32,
674674
)
675675
self.assert_paint(screen, (1, 6))
676676

0 commit comments

Comments
 (0)