From c85002167f9cba9a6f257837b3f7e006a64ac753 Mon Sep 17 00:00:00 2001 From: Christiaan Goossens <9487666+christiaangoossens@users.noreply.github.com> Date: Fri, 13 Mar 2026 13:01:13 +0100 Subject: [PATCH] Only run security audit on main dependencies (not dev) (#220) * Fix and update to Python 3.14.3 * Fix orjson version * Only run sec audit on non-dev --- .pysentry.toml | 2 +- scripts/security-check | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100755 scripts/security-check diff --git a/.pysentry.toml b/.pysentry.toml index 2b106e3..cc34587 100644 --- a/.pysentry.toml +++ b/.pysentry.toml @@ -4,7 +4,7 @@ version = 1 format = "human" severity = "low" fail_on = "medium" -scope = "all" +scope = "main" direct_only = false detailed = false include_withdrawn = false diff --git a/scripts/security-check b/scripts/security-check new file mode 100755 index 0000000..dfc700a --- /dev/null +++ b/scripts/security-check @@ -0,0 +1,2 @@ +#! /bin/bash +uvx pysentry-rs . \ No newline at end of file