From 94b8a6a76433706c41ef99d03bc3492efa508f5f Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Sun, 12 Apr 2026 21:15:18 -0400 Subject: [PATCH] Include pyproject.toml in Lambda package Fixes version display on julia-tagbot.com showing "dev" instead of the actual version. The web app reads the version from pyproject.toml but it wasn't being copied to the Lambda artifact directory. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index a9903ce8..5e9d5e32 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ build-ApiFunction build-ReportsFunction: --platform manylinux2014_x86_64 --only-binary=:all: \ --python-version 3.12 --implementation cp cp -r tagbot $(ARTIFACTS_DIR)/ + cp pyproject.toml $(ARTIFACTS_DIR)/ test: ./bin/test.sh