From 15eb80cdcc83e3c1e0d4222e91fbc25c4b12b2a2 Mon Sep 17 00:00:00 2001 From: Paschal Igusti Date: Mon, 4 Nov 2024 10:44:01 -0800 Subject: [PATCH] Remove SqlAlchemy dependency pinning (#3014) Summary: Since we have resolved the SQLAlchemy 2.0 dependency issue as part of T200894264, we should be good to remove the pinning Differential Revision: D65429486 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d3251af1f7c..524d477f4a2 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ "numpy<2.0", ] -MYSQL_REQUIRES = ["SQLAlchemy==1.4.17"] +MYSQL_REQUIRES = ["SQLAlchemy"] NOTEBOOK_REQUIRES = ["jupyter"]