rich 13.2.0-2~maysync1 source package in Ubuntu

Changelog

rich (13.2.0-2~maysync1) lunar; urgency=medium

  * Fake sync 13.2.0-2 to unblock MIR processing (LP: 2003570, Debian: 1029497)

rich (13.2.0-2) unstable; urgency=medium

  * debian/control
    - bump b-d on pygments to >= 2.14.0, prevents autopkgtest failures
    - drop commonmark from b-d, replaced by markdown-it

rich (13.2.0-1) unstable; urgency=medium

  * New upstream release
  * debian/patches/0001-tests-Adjustments-to-run-tests-with-pygments-2.14.0.patch
    - drop patch, merged upstream, making the previous NMU gratuitous
  * debian/control
    - add markdown-it to b-d, needed by tests

rich (13.0.0-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Add patch for pygments 2.14.0 (Closes: #1028619)

 -- Lukas Märdian <email address hidden>  Tue, 24 Jan 2023 10:21:47 +0100

Upload details

Uploaded by:
Lukas Märdian
Uploaded to:
Lunar
Original maintainer:
Sandro Tosi
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
rich_13.2.0.orig.tar.xz 13.8 MiB 7bcc0b90d6e0f9b872249e8850b0a05cc3cf13865881e916c1be027a5067dbef
rich_13.2.0-2~maysync1.debian.tar.xz 3.9 KiB 3f78fc939094ccc09e97a591559ee13d3141ecb172c16e4d8609bf8599969472
rich_13.2.0-2~maysync1.dsc 2.1 KiB d91d619573cd56fc7b98268020c8f375bca79e7b25ad0bc651a6fffe666c23d3

View changes file

Binary packages built by this source

python3-rich: render rich text, tables, progress bars, syntax highlighting, markdown and more

 Rich is a Python library for rich text and beautiful formatting in the
 terminal.
 .
 The Rich API makes it easy to add color and style to terminal output. Rich can
 also render pretty tables, progress bars, markdown, syntax highlighted source
 code, tracebacks, and more — out of the box.
 .
 Here's a list of the core functionalities of rich:
 .
  * to effortlessly add rich output to your application, you can import the rich
    print method, which has the same signature as the builtin Python function
  * Rich can be installed in the Python REPL, so that any data structures will
    be pretty printed and highlighted
  * for more control over rich terminal content, import and construct a Console
    object. The Console object has a print method which has an intentionally
    similar interface to the builtin print function
  * to insert an emoji in to console output place the name between two colons
  * Rich can render flexible tables with unicode box characters. There is a
    large variety of formatting options for borders, styles, cell alignment etc
  * Rich can render multiple flicker-free progress bars to track long-running
    tasks.
  * Rich can render content in neat columns with equal or optimal width.
  * Rich can render markdown and does a reasonable job of translating the
    formatting to the terminal
  * Rich can render beautiful tracebacks which are easier to read and show more
    code than standard Python tracebacks. You can set Rich as the default
    traceback handler so all uncaught exceptions will be rendered by Rich.