From 0b140025797fab9fc81bb68d5db0e4e90c5a1704 Mon Sep 17 00:00:00 2001 From: Jye Cusch Date: Fri, 9 Aug 2024 10:34:56 +1000 Subject: [PATCH 1/2] chore: update python sdk version --- v1/python-starter/Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1/python-starter/Pipfile b/v1/python-starter/Pipfile index dd3a6fb..3003d4c 100644 --- a/v1/python-starter/Pipfile +++ b/v1/python-starter/Pipfile @@ -7,7 +7,7 @@ name = "python starter" python_version = ">=3.11.0" [packages] -nitric = "==1.1.0" +nitric = "==1.1.1" [scripts] dev = "watchmedo auto-restart -p '*.py' -R python -- -u" From e2778f54b534339db63632198b14f9b9a8ae3918 Mon Sep 17 00:00:00 2001 From: Jye Cusch Date: Fri, 9 Aug 2024 11:19:29 +1000 Subject: [PATCH 2/2] fix: use specific python version range specifiers aren't supported by pipenv --- v1/python-starter/Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1/python-starter/Pipfile b/v1/python-starter/Pipfile index 3003d4c..206c4c8 100644 --- a/v1/python-starter/Pipfile +++ b/v1/python-starter/Pipfile @@ -4,7 +4,7 @@ verify_ssl = true name = "python starter" [requires] -python_version = ">=3.11.0" +python_version = "3.11" [packages] nitric = "==1.1.1"