From 066eb013a6b9418a34e9bfc272301b9c07fdafb6 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Thu, 10 Dec 2020 00:46:47 +0100 Subject: [PATCH] Start testing on PyPy 3 (because why not?) --- README.rst | 8 ++++---- tox.ini | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 153e343..7edf7f8 100644 --- a/README.rst +++ b/README.rst @@ -11,10 +11,10 @@ The `coloredlogs` package enables colored terminal output for Python's logging_ module. The ColoredFormatter_ class inherits from `logging.Formatter`_ and uses `ANSI escape sequences`_ to render your logging messages in color. It uses only standard colors so it should work on any UNIX terminal. It's currently tested -on Python 2.7, 3.5+ and PyPy. On Windows `coloredlogs` automatically tries to -enable native ANSI support (on up-to-date Windows 10 installations) and falls -back on using colorama_ (if installed). Here is a screen shot of the demo that -is printed when the command ``coloredlogs --demo`` is executed: +on Python 2.7, 3.5+ and PyPy (2 and 3). On Windows `coloredlogs` automatically +tries to enable native ANSI support (on up-to-date Windows 10 installations) +and falls back on using colorama_ (if installed). Here is a screen shot of the +demo that is printed when the command ``coloredlogs --demo`` is executed: .. image:: https://coloredlogs.readthedocs.io/en/latest/_images/defaults.png diff --git a/tox.ini b/tox.ini index 07bd505..759d749 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # directory. [tox] -envlist = py27, py35, py36, py37, py38, py39, pypy +envlist = py27, py35, py36, py37, py38, py39, pypy, pypy3 [testenv] deps = -rrequirements-tests.txt