From 80e74d995467849cbcf4df766de53b1fe049610c Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Fri, 10 Nov 2023 13:14:07 +0000 Subject: [PATCH] Yet another tweak --- netlify.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/netlify.toml b/netlify.toml index 3773d86..1ccbb04 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,10 +1,12 @@ [build] publish = "site" command = """ -restore_home_cache ".cache" "pip cache" && -restore_cwd_cache '.venv' 'python virtualenv' && +add-apt-repository ppa:deadsnakes/ppa && +apt update && +apt install python3.12 -y && pip3 install -q poetry && poetry config virtualenvs.in-project true && +poetry env use python3.12 && poetry install -v && poetry run build """ \ No newline at end of file