From bd18faa2a0c0091330a999d52c83195c2776be3d Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 11 Jul 2024 22:09:57 +0200 Subject: [PATCH] infra: add SQLAlchemy to min version testing (#23186) preventing issues like #22546 Notes: - this will only affect release CI. We may want to consider adding running unit tests with min versions to PR CI in some form - because this only affects release CI, it could create annoying issues releasing while I'm on vacation. Unless anyone feels strongly, I'll wait to merge this til when I'm back --- .github/scripts/get_min_versions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/get_min_versions.py b/.github/scripts/get_min_versions.py index 09f2d70ed9..35740a43d4 100644 --- a/.github/scripts/get_min_versions.py +++ b/.github/scripts/get_min_versions.py @@ -9,6 +9,7 @@ MIN_VERSION_LIBS = [ "langchain-community", "langchain", "langchain-text-splitters", + "SQLAlchemy", ]