From 817cd9dceb8c41a429352eb7098ce69d6a4398cb Mon Sep 17 00:00:00 2001 From: Varun Joginpalli Date: Thu, 26 Mar 2026 22:11:09 +0000 Subject: [PATCH] FIX: Add *.jsonl to MANIFEST.in for scorer metrics packaging Scorer evaluation metrics (.jsonl files) were missing from the built wheel because MANIFEST.in did not include the *.jsonl glob pattern. This was a pre-existing bug since v0.10.0 when .jsonl files were first added to pyrit/datasets/scorer_evals/. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 2dab982987..5d5311b48e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ recursive-include pyrit *.csv recursive-include pyrit *.json +recursive-include pyrit *.jsonl recursive-include pyrit *.prompt recursive-include pyrit *.yaml recursive-include pyrit *.pdf