From af2193363481b2d96c3d72392bc84dac1acacaaa Mon Sep 17 00:00:00 2001 From: Bill Wallis Date: Sat, 28 Feb 2026 14:48:01 +0000 Subject: [PATCH 1/2] chore: make envfile optional in Poe config --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index eec00bb..a3141a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ default-groups = "all" [tool.poe] verbosity = -1 -#envfile = ".env" +envfile.optional = ".env" [tool.poe.tasks] install.shell = """ From 02024a30451b79fee3a3e377bddf7572cc27bdc6 Mon Sep 17 00:00:00 2001 From: Bill Wallis Date: Sat, 28 Feb 2026 14:50:07 +0000 Subject: [PATCH 2/2] chore: don't cap dependencies --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a3141a1..a6a5299 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ # yaml-language-server: $schema=https://json.schemastore.org/pyproject.json [build-system] -requires = ["uv_build>=0.8.2,<1.0.0"] +requires = ["uv_build>=0.8"] build-backend = "uv_build" [project] @@ -25,7 +25,7 @@ test = [ [tool.uv] -required-version = ">=0.8,<1.0" +required-version = ">=0.8" default-groups = "all" #package = false