Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Oct 1, 2024
1 parent 45b7cef commit 3936deb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased


### Changed

- Dropped support for Python3.7 https://github.com/Textualize/rich/pull/3509
- Rich will display tracebacks with finely grained error locations on python 3.11+ https://github.com/Textualize/rich/pull/3486


### Fixed

- Fixed issue with Segment._split_cells https://github.com/Textualize/rich/pull/3506
- Fix auto detection of terminal size on Windows https://github.com/Textualize/rich/pull/2916
- `Text.style` now respected in Panel title/subtitle https://github.com/Textualize/rich/pull/3509

## [13.8.1] - 2024-09-10

Expand Down
2 changes: 1 addition & 1 deletion rich/jupyter.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def display(segments: Iterable[Segment], text: str) -> None:
try:
from IPython.display import display as ipython_display

ipython_display(jupyter_renderable) # type: ignore[no-untyped-call]
ipython_display(jupyter_renderable)
except ModuleNotFoundError:
# Handle the case where the Console has force_jupyter=True,
# but IPython is not installed.
Expand Down
2 changes: 1 addition & 1 deletion rich/live.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def refresh(self) -> None:
else:
if self.ipy_widget is None:
self.ipy_widget = Output()
display(self.ipy_widget) # type: ignore[no-untyped-call]
display(self.ipy_widget)

with self.ipy_widget:
self.ipy_widget.clear_output(wait=True)
Expand Down
2 changes: 1 addition & 1 deletion rich/pretty.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def display_hook(value: Any) -> None:
else:
from IPython.core.formatters import BaseFormatter

class RichFormatter(BaseFormatter):
class RichFormatter(BaseFormatter): # type: ignore[misc]
pprint: bool = True

def __call__(self, value: Any) -> Any:
Expand Down

0 comments on commit 3936deb

Please sign in to comment.