14
0
forked from pool/python-rich

Accepting request 1158430 from devel:languages:python

- update to 13.7.1:
  * Fixes some character widths

- Ignore python3.6.2 for test since it doesn't support it.
  * Added post_style argument to Segment.apply_style
  * Changed display of progress bars in no_color mode for
  * Console property size will fall back to getting the
    terminal size of stdout it stdin fails, this allows size
  * Allow passing markdown over STDIN when using python -m
  * Double tag escape, i.e. "\\[foo]" results in a
  * Fixed header_style not applying to headers in
  * Fixed encoding error on Windows when loading code for
  * MarkupError exception raise from None to omit internal
  * Factored out RichHandler.render and
- Kill dephell dependency

OBS-URL: https://build.opensuse.org/request/show/1158430
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-rich?expand=0&rev=29
This commit is contained in:
2024-03-18 15:44:08 +00:00
committed by Git OBS Bridge
4 changed files with 23 additions and 17 deletions

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sat Mar 16 09:47:51 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 13.7.1:
* Fixes some character widths
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Nov 16 21:27:11 UTC 2023 - Benoît Monin <benoit.monin@gmx.fr> Thu Nov 16 21:27:11 UTC 2023 - Benoît Monin <benoit.monin@gmx.fr>
@@ -286,7 +292,7 @@ Thu Jul 7 10:34:00 UTC 2022 - Dirk Müller <dmueller@suse.com>
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Apr 14 07:17:44 UTC 2022 - Hui-Zhi Zhao <hui.zhi.zhao@suse.com> Thu Apr 14 07:17:44 UTC 2022 - Hui-Zhi Zhao <hui.zhi.zhao@suse.com>
- Ignore python3.6.2 for test since it doesn't support it. - Ignore python3.6.2 for test since it doesn't support it.
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jan 14 20:08:47 UTC 2022 - Ben Greiner <code@bnavigator.de> Fri Jan 14 20:08:47 UTC 2022 - Ben Greiner <code@bnavigator.de>
@@ -548,7 +554,7 @@ Mon Jan 25 10:30:46 UTC 2021 - Ben Greiner <code@bnavigator.de>
* Fixed Tracebacks ignoring initial blank lines * Fixed Tracebacks ignoring initial blank lines
* Partial fix for tracebacks not finding source after chdir * Partial fix for tracebacks not finding source after chdir
Added Added
* Added post_style argument to Segment.apply_style * Added post_style argument to Segment.apply_style
- Changelog for 9.8.2 - Changelog for 9.8.2
* Fixed deadlock in live #927 * Fixed deadlock in live #927
- Changelog for 9.8.1 - Changelog for 9.8.1
@@ -560,14 +566,14 @@ Mon Jan 25 10:30:46 UTC 2021 - Ben Greiner <code@bnavigator.de>
* Added rich.align.VerticalCenter * Added rich.align.VerticalCenter
Changed Changed
* The style argument on Align now applies to background only * The style argument on Align now applies to background only
* Changed display of progress bars in no_color mode for * Changed display of progress bars in no_color mode for
clarity clarity
* Console property size will fall back to getting the * Console property size will fall back to getting the
terminal size of stdout it stdin fails, this allows size terminal size of stdout it stdin fails, this allows size
to be correctly determined when piping to be correctly determined when piping
Fixed Fixed
* Fixed panel cropping when shrunk too bar * Fixed panel cropping when shrunk too bar
* Allow passing markdown over STDIN when using python -m * Allow passing markdown over STDIN when using python -m
rich.markdown rich.markdown
* Fix printing MagicMock.mock_calls #903 * Fix printing MagicMock.mock_calls #903
- Changelog for 9.7.0 - Changelog for 9.7.0
@@ -575,18 +581,18 @@ Mon Jan 25 10:30:46 UTC 2021 - Ben Greiner <code@bnavigator.de>
* Added no_color argument to Console * Added no_color argument to Console
- Changelog for 9.6.2 - Changelog for 9.6.2
* Fixed markup escaping edge case #878 * Fixed markup escaping edge case #878
* Double tag escape, i.e. "\\[foo]" results in a * Double tag escape, i.e. "\\[foo]" results in a
backslash plus [foo] tag backslash plus [foo] tag
* Fixed header_style not applying to headers in * Fixed header_style not applying to headers in
positional args #953 positional args #953
- Changelog for 9.6.1 - Changelog for 9.6.1
* Fixed encoding error on Windows when loading code for * Fixed encoding error on Windows when loading code for
Tracebacks Tracebacks
- Changelog for 9.6.0 - Changelog for 9.6.0
Changed Changed
* MarkupError exception raise from None to omit internal * MarkupError exception raise from None to omit internal
exception exception
* Factored out RichHandler.render and * Factored out RichHandler.render and
RichHandler.render_message for easier extending RichHandler.render_message for easier extending
* Display pretty printed value in rich.inspect * Display pretty printed value in rich.inspect
Added Added
@@ -675,7 +681,7 @@ Fri Dec 18 19:46:52 UTC 2020 - Martin Hauke <mardnh@gmx.de>
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Oct 27 00:12:00 UTC 2020 - Benjamin Greiner <code@bnavigator.de> Tue Oct 27 00:12:00 UTC 2020 - Benjamin Greiner <code@bnavigator.de>
- Kill dephell dependency - Kill dephell dependency
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 25 15:36:02 UTC 2020 - Martin Hauke <mardnh@gmx.de> Sun Oct 25 15:36:02 UTC 2020 - Martin Hauke <mardnh@gmx.de>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-rich # spec file for package python-rich
# #
# Copyright (c) 2023 SUSE LLC # Copyright (c) 2024 SUSE LLC
# Copyright (c) 2020-2021, Martin Hauke <mardnh@gmx.de> # Copyright (c) 2020-2021, Martin Hauke <mardnh@gmx.de>
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
@@ -19,7 +19,7 @@
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-rich Name: python-rich
Version: 13.7.0 Version: 13.7.1
Release: 0 Release: 0
Summary: A Python library for rich text and beautiful formatting in the terminal Summary: A Python library for rich text and beautiful formatting in the terminal
License: MIT License: MIT

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5cb5123b5cf9ee70584244246816e9114227e0b98ad9176eede6ad54bf5403fa
size 221168

BIN
rich-13.7.1.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.