From patchwork Wed Oct 9 07:16:00 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 21551 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 D39CBC32DE for ; Wed, 9 Oct 2024 07:16:21 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 9038F6536B; Wed, 9 Oct 2024 09:16:20 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="tiIu8lTM"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 809AB63527 for ; Wed, 9 Oct 2024 09:16:19 +0200 (CEST) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:749:b3f1:dbb0:6c33]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1DBC52EC; Wed, 9 Oct 2024 09:14:42 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1728458082; bh=kJo4EQuLBLyBmVnsL1q6EQno/0ztNn2jAhVjtMW1TiI=; h=From:To:Cc:Subject:Date:From; b=tiIu8lTMxhxt9icScFSHLskCWE61c3ilJIligcBlY6KvBKrEJbt4DweT4sMJvevgB GeHIfM0qjYHCHrGYAywJQwPiBhLM86TsRYIJvbu0Gpve3MIv0ZNJJLt9EwgeocM7jQ 0LYGDnURs8RKXLxoC7APl4f0fdQMfziFhGnoK0Y0= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH] gitignore: Add venv directory to gitignore Date: Wed, 9 Oct 2024 09:16:00 +0200 Message-ID: <20241009071608.468018-1-stefan.klug@ideasonboard.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.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: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The python venv module is the standard way of creating virtual python environments. 'venv' is a commonly used name for the corresponding directory. For example in the tuning docs we propose to execute 'python -m venv venv' to setup a local virtual environment. During development I often have these scattered around in the source tree and they show up as untracked files in git. Add venv to .gitignore to prevent that. Signed-off-by: Stefan Klug Reviewed-by: Daniel Scally Acked-by: Kieran Bingham --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f6d1d68e4a7c..51d3144085ce 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ *.patch *.pyc __pycache__/ +venv/