Path to this page:
./
comms/py-colorama,
Cross-platform coloured terminal text
Branch: CURRENT,
Version: 0.4.6nb1,
Package name: py311-colorama-0.4.6nb1,
Maintainer: kamelderouicheMakes ANSI escape character sequences for producing colored terminal text and
cursor positioning work under MS Windows.
ANSI escape character sequences have long been used to produce colored terminal
text and cursor positioning on Unix and Macs. Colorama makes this work on
Windows, too, by wrapping stdout, stripping ANSI sequences it finds (which
otherwise show up as gobbledygook in your output), and converting them into the
appropriate win32 calls to modify the state of the terminal. On other platforms,
Colorama does nothing.
Colorama also provides some shortcuts to help generate ANSI sequences but works
fine in conjunction with any other ANSI sequence generation library, such as
Termcolor.
Required to run:[
lang/python310]
Master sites:
Filesize: 27.048 KB
Version history: (Expand)
- (2023-10-28) Updated to version: py311-colorama-0.4.6nb1
- (2022-11-09) Updated to version: py310-colorama-0.4.6
- (2022-08-02) Updated to version: py310-colorama-0.4.5
- (2022-01-05) Updated to version: py39-colorama-0.4.4nb2
- (2021-10-07) Updated to version: py39-colorama-0.4.4nb1
- (2021-01-09) Updated to version: py38-colorama-0.4.4nb1
CVS history: (Expand)
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-07-02 14:40:44 by Thomas Klausner | Files touched by this commit (1) |
Log message:
py-colorama: fix MASTER_SITES
|
2023-07-01 10:54:01 by Thomas Klausner | Files touched by this commit (2) |
Log message:
py-colorama: not for Python 2 any longer
|
2022-11-10 09:19:36 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
py-colorama: switch to MASTER_SITE_WHEEL for Python 2.7
|
2022-11-09 23:46:49 by Thomas Klausner | Files touched by this commit (1) |
Log message:
py-colorama: add missing tool dependency on py-hatchling
|
2022-11-09 08:56:56 by Adam Ciarcinski | Files touched by this commit (1) |
Log message:
py-colorama: revert DESCR
|
2022-11-09 08:55:44 by Adam Ciarcinski | Files touched by this commit (4) | |
Log message:
py-colorama: updated to 0.4.6
0.4.6 Current release
* https://github.com/tartley/colorama/pull/139 Add alternative to 'init()',
called 'just_fix_windows_console'. This fixes many longstanding problems
with 'init', such as working incorrectly on modern Windows terminals, and
wonkiness when init gets called multiple times. The intention is that it
just makes all Windows terminals treat ANSI the same way as other terminals
do. Many thanks the njsmith for fixing our messes.
* https://github.com/tartley/colorama/pull/352 Support Windows 10's ANSI/VT
console. This didn't exist when Colorama was created, and avoiding us
causing havok there is long overdue. Thanks to segeviner for the initial
approach, and to njsmith for getting it merged.
* https://github.com/tartley/colorama/pull/338 Internal overhaul of package
metadata declaration, which abolishes our use of the now heavily
discouraged setuptools (and hence setup.py, setup.cfg and MANIFEST.in), in
favor of hatchling (and hence pyproject.toml), generously contributed by
ofek (author of hatchling). This includes dropping support Python3.5 and
3.6, which are EOL, and were already dropped from setuptools, so this
should not affect our users.
* https://github.com/tartley/colorama/pull/353 Attention to detail award to
LqdBcnAtWork for a spelling fix in demo06
|
2022-08-02 11:48:51 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-colorama: updated to 0.4.5
0.4.5
* Catch a racy ValueError that could occur on exit.
* Create README-hacking.md, for Colorama contributors.
* Tweak some README unicode characters that don't render correctly on PyPI.
* Fix some tests that were failing on some operating systems.
* Add support for Python 3.9.
* Add support for PyPy3.
* Add support for pickling with the ``dill`` module.
|