From 312fb23c89480cc14f6c8380d7f9e5ed26d472a5 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Thu, 7 Aug 2025 18:00:25 -0400 Subject: [PATCH] fix: pin openai package upper bound to <=1.99.1 --- CHANGELOG.md | 7 ++++++- pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f4d47273..03b25f34e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,12 @@ All notable changes to **Pipecat** will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.0.79] - 2025-08-07 + +### Changed + +- Changed `pipecat-ai`'s `openai` dependency to `>=1.74.0,<=1.99.1` due to a + breaking change in `openai` 1.99.2 ([commit](https://github.com/openai/openai-python/commit/657f551dbe583ffb259d987dafae12c6211fba06)) ### Deprecated diff --git a/pyproject.toml b/pyproject.toml index 364a22933..129208827 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dependencies = [ "pyloudnorm~=0.1.1", "resampy~=0.4.3", "soxr~=0.5.0", - "openai>=1.74.0,<2", + "openai>=1.74.0,<=1.99.1", ] [project.urls]