summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-extended/python-rich
Commit message (Collapse)AuthorAgeFilesLines
* python3-rich: Add native and nativesdk target to the buildLuca Fancellu2025-05-131-0/+2
| | | | | | | Add the native and nativesdk target to the recipe. Signed-off-by: Luca Fancellu <luca.fancellu@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.9.4 -> 14.0.0Wang Mingyu2025-04-071-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Fix variable assignment whitespaceRichard Purdie2025-01-311-1/+1
| | | | | | | | | | | | Recipes are much more readable with whitespace around the assignment operators. Fix various assignments in meta-openembedded recipes to show this is definitely the preferred formatting. This fixes recipes with larger numbers of issues but there are just under 100 other references left to fix. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: Add missing rdependsKhem Raj2024-11-211-1/+5
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.9.3 -> 13.9.4Wang Mingyu2024-11-051-1/+1
| | | | | | | | Changelog: Optimizations to cell_len which may speed up Rich / Textual output Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: Upgrade 13.9.2 -> 13.9.3Leon Anavi2024-10-241-1/+1
| | | | | | | | | Upgrade to release 13.9.3: - Fixed broken regex that may have resulted in poor performance Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: Upgrade 13.8.0 -> 13.9.2Leon Anavi2024-10-111-1/+1
| | | | | | | | | | Upgrade to release 13.9.2: - Fixed Table columns not highlighting when added by add_row - Fixed an issue with Segment.split_cells reported in Textual Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.8.0 -> 13.8.1Wang Mingyu2024-09-181-1/+1
| | | | | | | | | | Changelog: =========== - Added support for Python 3.13 - Fixed infinite loop when appending Text to same instance Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.7.1 -> 13.8.0Wang Mingyu2024-09-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Fixed -------- - Fixed Table rendering of box elements so "footer" elements truly appear at bottom of table, "mid" elements in main table body. - Fixed styles in Panel when Text objects are used for title - Fix pretty repr for collections.deque - Thread used in progress.track will exit if an exception occurs in a generator - Progress track thread is now a daemon thread - Fixed cached hash preservation upon clearing meta and links - Fixed overriding the background_color of Syntax not including padding - Fixed pretty printing of dataclasses with a default repr in Python 3.13 - Fixed selective enabling of highlighting when disabled in the Console - Fixed BrokenPipeError writing an error message - Fixed superfluous space above Markdown tables - Fixed issue with record and capture interaction - Fixed control codes breaking in append_tokens - Fixed exception pretty printing a dataclass with missing fields Changed ---------- - RichHandler errors and warnings will now use different colors (red and yellow) - Removed the empty line printed in jupyter while using Progress - Running tests in environment with FORCE_COLOR or NO_COLOR environment variables - ansi decoder will now strip problematic private escape sequences (like \x1b7) - Tree's ASCII_GUIDES and TREE_GUIDES constants promoted to class attributes Added --------- - Adds a case_sensitive parameter to prompt.Prompt. This determines if the - response is treated as case-sensitive. Defaults to True. - Added Console.on_broken_pipe Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.7.0 -> 13.7.1Wang Mingyu2024-06-111-1/+1
| | | | | | | | Changelog: Updated the widths of some characters Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-python: drop ${PYTHON_PN}Tim Orling2024-02-191-1/+1
| | | | | | | python 2 is long unsupported, so we no longer need this variable. Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.6.0 -> 13.7.0Wang Mingyu2023-11-211-1/+1
| | | | | | | | | | | | Changelog: ============ -Adds missing parameters to Panel.fit -Some text goes missing during wrapping when it contains double width characters -Ensure font is correctly inherited in exported HTML -Fixed typing for FloatPrompt. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.5.3 -> 13.6.0Wang Mingyu2023-10-231-1/+1
| | | | | | | | Changelog: Added Python 3.12 to classifiers. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.5.2 -> 13.5.3Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | Changelog: =========== Markdown table rendering issue with inline styles and links Fix Markdown code blocks on a light background Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.4.2 -> 13.5.2Wang Mingyu2023-08-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ Fixed -------- Fixed Text.expand_tab assertion error Fix tilde character (~) not included in link regex when printing to console #3057 Fixed Text.expand_tabs not expanding spans. Fixed TimeElapsedColumn from showing negative. Fix for escaping strings with a trailing backslash #2987 Fixed exception in Markdown with partial table #3053 Fixed the HTML export template so that the <html> tag comes before the <head> tag #3021 Fixed issue with custom classes overwriting __eq__ #2875 Fix rich.pretty.install breakage in iPython #3013 Added -------- Added Text.extend_style method. Added Span.extend method. Changed ---------- Text.tab_size now defaults to None to indicate that Console.tab_size should be used. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.4.1 -> 13.4.2Wang Mingyu2023-06-191-1/+1
| | | | | | | | | Changelog: ========== Relaxed markdown-it-py dependency Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.3.5 -> 13.4.1Wang Mingyu2023-06-051-1/+1
| | | | | | | | | | Changelog: ============ Fixed typing extensions import in markdown #2979 Added support for tables in Markdown #2977 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.3.4 -> 13.3.5Wang Mingyu2023-05-081-1/+1
| | | | | | | | Changelog: Fixed italic indent guides in SVG ouput Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.3.3 -> 13.3.4Wang Mingyu2023-04-171-1/+1
| | | | | | | | Changelog: Fixed for is_terminal ignoring FORCE_COLOR Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.3.2 -> 13.3.3Wang Mingyu2023-04-051-1/+1
| | | | | | | | Changelog: Added Style.clear_meta_and_links Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: add recipeYi Zhao2023-03-091-0/+15
Rich is a Python library for rich text and beautiful formatting in the terminal. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>