X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/403ce1a18a8a1600ab8249d828e7eaaca442cad7..0fd353f1639c580c32599bf435902d08dbd9a560:/docs/conf.py diff --git a/docs/conf.py b/docs/conf.py index 15adb5d..55d0fa9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,8 +12,10 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # -from pathlib import Path + +import os import string +from pathlib import Path from pkg_resources import get_distribution @@ -29,6 +31,10 @@ def make_pypi_svg(version: str) -> None: f.write(svg) +# Necessary so Click doesn't hit an encode error when called by +# sphinxcontrib-programoutput on Windows. +os.putenv("pythonioencoding", "utf-8") + # -- Project information ----------------------------------------------------- project = "Black"