From 2c92cf41b3de77e78e3e74a6db981adec14f8575 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Thu, 12 Jan 2023 09:13:18 +0100 Subject: [PATCH] DOC: Add note in 1.5.3 about SQLAlchemy warnings (#50680) --- doc/source/whatsnew/v1.5.3.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/source/whatsnew/v1.5.3.rst b/doc/source/whatsnew/v1.5.3.rst index a0c38f1f81538..b2039abe9f715 100644 --- a/doc/source/whatsnew/v1.5.3.rst +++ b/doc/source/whatsnew/v1.5.3.rst @@ -36,6 +36,13 @@ Bug fixes Other ~~~~~ + +.. note:: + + If you are using :meth:`DataFrame.to_sql`, :func:`read_sql`, :func:`read_sql_table`, or :func:`read_sql_query` with SQLAlchemy 1.4.46 or greater, + you may see a ``sqlalchemy.exc.RemovedIn20Warning``. These warnings can be safely ignored for the SQLAlchemy 1.4.x releases + as pandas works toward compatibility with SQLAlchemy 2.0. + - -