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
This commit is contained in:
Ricky Stewart 2020-07-07 23:41:55 +00:00
parent 2c66728ad6
commit 396a329ec4
2 changed files with 4 additions and 0 deletions

2
.gitignore vendored
View File

@ -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

View File

@ -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$