From 75b2e40cd36f211d46e05471707f140ad5128c36 Mon Sep 17 00:00:00 2001 From: Julio Quinteros Pro Date: Wed, 4 Mar 2026 11:46:31 -0300 Subject: [PATCH] Remove incompatible openai==1.100.1 pin from linting CI The linting workflow force-installed openai==1.100.1 which conflicts with litellm's requirement of openai>=2.8.0, causing pip dependency resolver errors and CI cancellation. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/test-linting.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test-linting.yml b/.github/workflows/test-linting.yml index 017aef1cc4..e918a71373 100644 --- a/.github/workflows/test-linting.yml +++ b/.github/workflows/test-linting.yml @@ -32,7 +32,6 @@ jobs: run: | poetry lock poetry install --with dev - poetry run pip install openai==1.100.1 - name: Run Black formatting run: |