Compare commits
1 Commits
Author | SHA256 | Date | |
---|---|---|---|
f7ef948f7a |
@@ -1,83 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
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>
|
|
||||||
|
|
||||||
- update to version 13.7.0:
|
|
||||||
* Added
|
|
||||||
+ Adds missing parameters to Panel.fit #3142
|
|
||||||
+ Fixed
|
|
||||||
+ Some text goes missing during wrapping when it contains
|
|
||||||
double width characters #3176
|
|
||||||
+ Ensure font is correctly inherited in exported HTML #3104
|
|
||||||
+ Fixed typing for FloatPrompt.
|
|
||||||
- additional changes from 13.6.0:
|
|
||||||
* Added Python 3.12 to classifiers.
|
|
||||||
- additional changes from 13.5.3:
|
|
||||||
* Fixed
|
|
||||||
+ Markdown table rendering issue with inline styles and links
|
|
||||||
#3115
|
|
||||||
+ Fix Markdown code blocks on a light background #3123
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Aug 27 21:36:07 UTC 2023 - Arun Persaud <arun@gmx.de>
|
|
||||||
|
|
||||||
- specfile:
|
|
||||||
* update copyright year
|
|
||||||
|
|
||||||
- update to version 13.5.2:
|
|
||||||
* Fixed
|
|
||||||
+ Fixed Text.expand_tab assertion error
|
|
||||||
|
|
||||||
- changes from version 13.5.1:
|
|
||||||
* Fixed
|
|
||||||
+ Fix tilde character (~) not included in link regex when printing
|
|
||||||
to console #3057
|
|
||||||
|
|
||||||
- changes from version 13.5.0:
|
|
||||||
* Fixed
|
|
||||||
+ 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.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Jul 19 09:18:31 UTC 2023 - ecsos <ecsos@opensuse.org>
|
|
||||||
|
|
||||||
- %{?sle15_python_module_pythons} mut be at beginning to work.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Jul 8 20:32:32 UTC 2023 - Arun Persaud <arun@gmx.de>
|
|
||||||
|
|
||||||
- specfile:
|
|
||||||
* update copyright year
|
|
||||||
|
|
||||||
- update to version 13.4.2:
|
|
||||||
* Changed
|
|
||||||
+ Relaxed markdown-it-py dependency
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Thu Jun 1 06:05:31 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
|
|
||||||
|
|
||||||
- update to 13.4.1:
|
|
||||||
* Fixed typing extensions import in markdown #2979
|
|
||||||
- update to 13.4.0:
|
|
||||||
* Added support for tables in Markdown #2977
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 4 21:06:58 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Thu May 4 21:06:58 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-rich
|
# spec file for package python-rich
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2023 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
|
||||||
@@ -17,9 +17,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define skip_python2 1
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-rich
|
Name: python-rich
|
||||||
Version: 13.7.1
|
Version: 13.3.5
|
||||||
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
|
||||||
@@ -32,21 +33,21 @@ BuildRequires: %{python_module pip}
|
|||||||
BuildRequires: %{python_module poetry-core}
|
BuildRequires: %{python_module poetry-core}
|
||||||
BuildRequires: %{python_module pygments >= 2.13.0}
|
BuildRequires: %{python_module pygments >= 2.13.0}
|
||||||
BuildRequires: %{python_module typing_extensions >= 4.0.0 if %python-base < 3.9}
|
BuildRequires: %{python_module typing_extensions >= 4.0.0 if %python-base < 3.9}
|
||||||
BuildRequires: fdupes
|
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-markdown-it-py >= 2.2.0
|
|
||||||
Requires: python-pygments >= 2.13.0
|
|
||||||
Suggests: python-ipywidgets >= 7.5.1
|
|
||||||
BuildArch: noarch
|
|
||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
# /SECTION
|
# /SECTION
|
||||||
|
BuildRequires: fdupes
|
||||||
|
Requires: python-markdown-it-py >= 2.2.0
|
||||||
|
Requires: python-pygments >= 2.13.0
|
||||||
|
Suggests: python-ipywidgets >= 7.5.1
|
||||||
%if 0%{?python_version_nodots} < 39
|
%if 0%{?python_version_nodots} < 39
|
||||||
Requires: python-typing_extensions >= 4.0.0
|
Requires: python-typing_extensions >= 4.0.0
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?python_version_nodots} < 37
|
%if 0%{?python_version_nodots} < 37
|
||||||
Requires: python-dataclasses >= 0.7
|
Requires: python-dataclasses >= 0.7
|
||||||
%endif
|
%endif
|
||||||
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
|
BIN
rich-13.3.5.tar.gz
(Stored with Git LFS)
Normal file
BIN
rich-13.3.5.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
rich-13.7.1.tar.gz
(Stored with Git LFS)
BIN
rich-13.7.1.tar.gz
(Stored with Git LFS)
Binary file not shown.
Reference in New Issue
Block a user