From 396a329ec4d97087bdddbd8e648a36d54e0e8ec3 Mon Sep 17 00:00:00 2001 From: Ricky Stewart Date: Tue, 7 Jul 2020 23:41:55 +0000 Subject: [PATCH] Bug 1651214 - Ignore .python-version file at top of checkout r=nalexander We'll add documentation explicitly recommending people use `pyenv` to install Python versions if they can't use their system package manager. Routine usage of `pyenv` will cause this file to be created at the root of the checkout, so ignore it. Differential Revision: https://phabricator.services.mozilla.com/D82609 --- .gitignore | 2 ++ .hgignore | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 8b2360016d31..fe6e2b9ccf68 100644 --- a/.gitignore +++ b/.gitignore @@ -36,6 +36,8 @@ ID /.clang_complete /machrc /.machrc +# pyenv artifact +/.python-version # Empty marker file that's generated when we check out NSS security/manager/.nss.checkout diff --git a/.hgignore b/.hgignore index 9e8508cfa635..6c57908a66cd 100644 --- a/.hgignore +++ b/.hgignore @@ -32,6 +32,8 @@ compile_commands\.json ^config\.log$ ^\.clang_complete ^\.?machrc$ +# pyenv artifact +^\.python-version$ # Empty marker file that's generated when we check out NSS ^security/manager/\.nss\.checkout$