From 6fadad055e4d70e07eb424b0d6b7eecccb91c5df Mon Sep 17 00:00:00 2001 From: Caleb Courier Date: Mon, 15 Sep 2025 08:36:26 -0500 Subject: [PATCH 1/2] bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6f2be0828..3c8acf2a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "guardrails-ai" -version = "0.6.6" +version = "0.6.7" description = "Adding guardrails to large language models." authors = [ {name = "Guardrails AI", email = "contact@guardrailsai.com"} From d54cc0515945d7359cf97235faf57cc72749f6f9 Mon Sep 17 00:00:00 2001 From: Caleb Courier Date: Mon, 15 Sep 2025 08:50:03 -0500 Subject: [PATCH 2/2] install pytest asyncio for server ci --- .github/workflows/server_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/server_ci.yml b/.github/workflows/server_ci.yml index 1fb1d9242..99f49353f 100644 --- a/.github/workflows/server_ci.yml +++ b/.github/workflows/server_ci.yml @@ -54,7 +54,7 @@ jobs: - name: Run Pytest run: | - pip install pytest openai guardrails-ai + pip install pytest pytest-asyncio openai guardrails-ai pytest server_ci/tests docker stop guardrails-container docker rm guardrails-container \ No newline at end of file