Commit f5348f70 authored by nimrod's avatar nimrod
Browse files

functions: Revert to Python 3.13.

The one that comes with the `ci-images:python3` image.
parent ad0e1a9c
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ payload.zip: clean requirements.txt $(src)
	-rm -r payload.zip payload/*
	mkdir -p payload
	cp -a src/* payload/
	python3.14 -m pip install -r requirements.txt -t payload
	python3.13 -m pip install -r requirements.txt -t payload
	cd payload && zip -X --exclude __pycache__ --exclude "*.pyc" --exclude test --exclude bin -r ../$@ ./
	strip-nondeterminism $@

@@ -13,5 +13,5 @@ clean:
	-rm -r payload.zip payload

.venv: requirements.txt
	python3.14 -m venv .venv
	python3.13 -m venv .venv
	.venv/bin/pip install -r requirements.txt
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ resource "aws_iam_role_policy_attachment" "function" {
}

variable "runtime" {
  default     = "python3.14"
  default     = "python3.13"
  description = "The Lambda function runtime."
  type        = string
}