From 9a9620dda649dcdb685662bbd9cb409bfeff4214 Mon Sep 17 00:00:00 2001 From: Sulabh Katila Date: Wed, 30 Aug 2023 23:03:30 -0400 Subject: Fixed #34768 -- Avoided initializing colorama on non-Windows platforms. --- docs/howto/windows.txt | 4 ++-- docs/internals/contributing/writing-code/unit-tests.txt | 2 +- docs/ref/django-admin.txt | 2 +- docs/releases/5.0.txt | 2 ++ 4 files changed, 6 insertions(+), 4 deletions(-) (limited to 'docs') diff --git a/docs/howto/windows.txt b/docs/howto/windows.txt index fbac82f967..d0d2b9a119 100644 --- a/docs/howto/windows.txt +++ b/docs/howto/windows.txt @@ -103,12 +103,12 @@ terminal. In modern terminals this should work for both CMD and PowerShell. If for some reason this needs to be disabled, set the environmental variable :envvar:`DJANGO_COLORS` to ``nocolor``. -On older Windows versions, or legacy terminals, :pypi:`colorama` must be +On older Windows versions, or legacy terminals, :pypi:`colorama` 0.4.6+ must be installed to enable syntax coloring: .. code-block:: doscon - ...\> py -m pip install colorama + ...\> py -m pip install "colorama >= 0.4.6" See :ref:`syntax-coloring` for more information on color settings. diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index bed9c91665..3d39b32c0f 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -281,7 +281,7 @@ dependencies: * :pypi:`argon2-cffi` 19.2.0+ * :pypi:`asgiref` 3.7.0+ (required) * :pypi:`bcrypt` -* :pypi:`colorama` +* :pypi:`colorama` 0.4.6+ * :pypi:`docutils` * :pypi:`geoip2` * :pypi:`Jinja2` 2.11+ diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index c3349f364b..d63c049b0b 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1931,7 +1931,7 @@ two third-party libraries are needed: .. code-block:: doscon - ...\> py -m pip install colorama + ...\> py -m pip install "colorama >= 0.4.6" * Install `ANSICON`_, a third-party tool that allows ``cmd.exe`` to process ANSI color codes. Django commands will detect its presence and will make use diff --git a/docs/releases/5.0.txt b/docs/releases/5.0.txt index fcb8091545..c75f79af81 100644 --- a/docs/releases/5.0.txt +++ b/docs/releases/5.0.txt @@ -630,6 +630,8 @@ Miscellaneous requests with the :mimetype:`application/x-www-form-urlencoded` content type. See :rfc:`1866` for more details. +* The minimum supported version of ``colorama`` is increased to 0.4.6. + .. _deprecated-features-5.0: Features deprecated in 5.0 -- cgit v1.3