From patchwork Mon Jun 20 12:55:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 16286 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 2EEFCBE173 for ; Mon, 20 Jun 2022 12:55:15 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 8B3A365635; Mon, 20 Jun 2022 14:55:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1655729714; bh=KZbNBmvwHahUHvNZ5VN3YpuaZ4ul2K2Evf0kTSxHfwI=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=ir6d9zxA4CX76dHvfXpdn7HuCqgXEDS66yMYGSHfkEWvDEROekIPCzVWNhVWvsfgO XGFBzlA6DFfkbiuof03CcW/ocEkMZna3Ox30EG2V2xia5tBW1MRkAzunYtpEmmNVdk 4X4g9n9EUVmkSA/aR+Y2cZX7I50206PjQjfxICTCyNMZELMDYMuQIoXMIIMevKjm0h 9mmpX/1++/KRnlRIYFKxJoAs1EZql9bgK2mJixVd5zRXw2CgrB2s5ciF98Elbgp/5m ljmjlLBRleafxnotc4ZVbBFlZGpaP5H3Rn/ibWAf665r92btGiK6jCd0+9CACtJ9wi 8jeh3iyeDHQ8g== Received: from relay10.mail.gandi.net (relay10.mail.gandi.net [IPv6:2001:4b98:dc4:8::230]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 8301B60498 for ; Mon, 20 Jun 2022 14:55:13 +0200 (CEST) Received: (Authenticated sender: jacopo@jmondi.org) by mail.gandi.net (Postfix) with ESMTPSA id EA1A1240019; Mon, 20 Jun 2022 12:55:12 +0000 (UTC) To: libcamera-devel@lists.libcamera.org Date: Mon, 20 Jun 2022 14:55:07 +0200 Message-Id: <20220620125507.57991-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] Documentation: Use language 'en' for Sphinx 5.0.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Jacopo Mondi via libcamera-devel From: Jacopo Mondi Reply-To: Jacopo Mondi Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Recent versions of Sphinx (> 5.0.0) have dropped support for the 'None' keyword as language specifier: https://www.sphinx-doc.org/en/master/changes.html#release-5-0-0-released-may-30-2022 10474: language does not accept None as it value. The default value of language becomes to 'en' now. Patch by Adam Turner and Takeshi KOMIYA. Causing a compile time warning: WARNING: Invalid configuration value found: 'language = None'. Update your configuration to a valid language code. Falling back to 'en' (English). Change the language setting to 'en' to silence the warning. Signed-off-by: Jacopo Mondi Reviewed-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- Documentation/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/conf.py b/Documentation/conf.py index 78602c85e33f..7eeea7f3865b 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -56,7 +56,7 @@ master_doc = 'index' # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = 'en' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files.