Overview

Rich 14.2, released on October 9, 2025, adds Python 3.14 compatibility.

Main Features

Python 3.14 compatibility

Rich 14.2 fixes incompatibilities with Python 3.14, notably changes related to deferred annotations and the inspect module.

python
from rich.console import Console
from rich.table import Table

console = Console()
table = Table(title='Versions')
table.add_column('Lib')
table.add_column('Version')
table.add_row('Rich', '14.2')
table.add_row('Python', '3.14')
console.print(table)

Sources