From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id F15FEC83F14 for ; Mon, 28 Aug 2023 18:38:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233036AbjH1SiU (ORCPT ); Mon, 28 Aug 2023 14:38:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50008 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233058AbjH1Sh4 (ORCPT ); Mon, 28 Aug 2023 14:37:56 -0400 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C896F1B7; Mon, 28 Aug 2023 11:37:46 -0700 (PDT) Received: from localhost (unknown [IPv6:2601:281:8300:73::646]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 62EFB7DB; Mon, 28 Aug 2023 18:37:46 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 62EFB7DB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1693247866; bh=mJ+yrPifBWRjdsIqxkBqhdA1ySKTRpd70cZiDPx81MI=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=eiK4QevjmD3grjkEiG5wAm0JLEQwRN+TK1LLgx9RV75NWqmhHvYSV2BzitTeKhTDO P9Jza9uRui3Zj6i6Vaki5LOK+hKnMrLk40RuySIBtdPNsAPNPFhbZnMLwZBuh4nZOD mp/sbn9/hDB5Hf3Y4Si+FP1F34rgxFZke5NL1Po//QSWovQhI9GC8TzCr74cGfLLHJ y/CqiCD284lOEkoUAF4Au/19FZ4D8IItggcDlLmKlrFNlkbLq4HWkuWxUGyZNQRUzL IJ3EOnQLtYzemns7uj9mavEWKxdq3BLmGlZ69c0EucNfCEeqx3niXzEzHNzJtWNW01 KR+zQkaqM/mJw== From: Jonathan Corbet To: Mauro Carvalho Chehab Cc: Matthew Wilcox , Nishanth Menon , linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, bpf@vger.kernel.org, Heinrich Schuchardt , Mattijs Korpershoek , Simon Glass , Tom Rini , Neha Francis Subject: Re: [PATCH 1/2] Documentation: sphinx: Add sphinx-prompt In-Reply-To: <20230828192508.0da12d72@sal.lan> References: <20230824182107.3702766-1-nm@ti.com> <20230824182107.3702766-2-nm@ti.com> <87h6om4u6o.fsf@meer.lwn.net> <20230828125912.hndmzfkof23zxpxl@tidings> <87edjn2sj0.fsf@meer.lwn.net> <87wmxf19rs.fsf@meer.lwn.net> <20230828192508.0da12d72@sal.lan> Date: Mon, 28 Aug 2023 12:37:45 -0600 Message-ID: <87jztf1092.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Mauro Carvalho Chehab writes: > Adding dependencies there is not the easiest thing to do, as one needs to > test the change against all supported distros to ensure that the new package > name will be the same everywhere. Also, if I'm not mistaken, some developers > don't want to use pip to install packages, wanting instead to have the > distro-provided package. That, actually, is something we definitely need to keep in mind. The security record for PyPI (as with almost all of the language-specific repos) is not great. We need to think pretty hard before telling developers (or, say, the build process on kernel.org) that they need to install packages from there on their systems. Thanks, jon