From f005b5e4a92a3eed17c42575df6ba82ae99dc0c8 Mon Sep 17 00:00:00 2001 From: Michael Harris Date: Fri, 30 Aug 2024 16:39:33 -0400 Subject: [PATCH] chore(poetry): bump patch version --- CHANGELOG.md | 4 ++++ pyproject.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1911704..28c5f8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ See [releases](https://github.com/mharrisb1/openai-responses-python/releases) for more. +## 0.10.1 + +Bumps support range to include OpenAI Python SDK v1.43. + ## 0.10.0 Adds support for [moderations endpoint](https://platform.openai.com/docs/api-reference/moderations/create). diff --git a/pyproject.toml b/pyproject.toml index 8a259e1..ff32c20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openai-responses" -version = "0.10.0" +version = "0.10.1" description = "🧪🤖 Pytest plugin for automatically mocking OpenAI requests" authors = ["Michael Harris "] license = "MIT" @@ -20,7 +20,7 @@ openai_responses = "openai_responses.plugin" [tool.poetry.dependencies] python = ">=3.9,<4.0" -openai = ">=1.32,<1.43" +openai = ">=1.32,<1.44" requests-toolbelt = "^1" respx = "^0.20"