From f6233e1c1d39a4ddc37efefceaa32872dbda84fe Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 25 Sep 2024 12:03:34 -0700 Subject: [PATCH] Add python-version file Python 3.12 doesn't work for building node-sass due to the removal of distutils, but 3.11 does. For people using pyenv (similar to nvm) we can set a python version. This won't solve build mismatches for everyone, but node v20 + python 3.11 does work, so might as well capture it. --- .python-version | 1 + 1 file changed, 1 insertion(+) create mode 100644 .python-version diff --git a/.python-version b/.python-version new file mode 100644 index 000000000..2c0733315 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.11