From a3965dde9b123f7044c513c315de66ac72415dc1 Mon Sep 17 00:00:00 2001 From: Jye Cusch Date: Tue, 6 Aug 2024 14:14:58 +1000 Subject: [PATCH] fix: set minimum python version in starter project --- v1/python-starter/Pipfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/v1/python-starter/Pipfile b/v1/python-starter/Pipfile index 49c8e0b..dd3a6fb 100644 --- a/v1/python-starter/Pipfile +++ b/v1/python-starter/Pipfile @@ -3,6 +3,9 @@ url = "https://pypi.org/simple" verify_ssl = true name = "python starter" +[requires] +python_version = ">=3.11.0" + [packages] nitric = "==1.1.0"