From a40309735daddd0c086f9f0f133341be5e63a7db Mon Sep 17 00:00:00 2001 From: Andrew Fitzgerald <131809+fitzoh@users.noreply.github.com> Date: Fri, 5 Feb 2021 21:45:20 -0500 Subject: [PATCH] Update cookbook.rst references to #753 A fix for #753 was merged in November 2020 and released in 1.5.0 in January 2021. This updates the references to #753 in cookbook.rst to note that a fix for #753 has been released. --- docs/build/cookbook.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/build/cookbook.rst b/docs/build/cookbook.rst index 1bfba30d..2f409d91 100644 --- a/docs/build/cookbook.rst +++ b/docs/build/cookbook.rst @@ -1315,7 +1315,7 @@ follows:: elem.table_name, schema=elem.schema ) as batch_ops: for table_elem in elem.ops: - # work around Alembic issue #753 + # work around Alembic issue #753 (fixed in 1.5.0) if hasattr(table_elem, "column"): table_elem.column = table_elem.column.copy() batch_ops.invoke(table_elem) @@ -1323,7 +1323,7 @@ follows:: elif hasattr(elem, "ops"): stack.extend(elem.ops) else: - # work around Alembic issue #753 + # work around Alembic issue #753 (fixed in 1.5.0) if hasattr(elem, "column"): elem.column = elem.column.copy() operations.invoke(elem) @@ -1396,7 +1396,7 @@ at :func:`.autogenerate.compare_metadata`:: elem.table_name, schema=elem.schema ) as batch_ops: for table_elem in elem.ops: - # work around Alembic issue #753 + # work around Alembic issue #753 (fixed in 1.5.0) if hasattr(table_elem, "column"): table_elem.column = table_elem.column.copy() batch_ops.invoke(table_elem) @@ -1404,7 +1404,7 @@ at :func:`.autogenerate.compare_metadata`:: elif hasattr(elem, "ops"): stack.extend(elem.ops) else: - # work around Alembic issue #753 + # work around Alembic issue #753 (fixed in 1.5.0) if hasattr(elem, "column"): elem.column = elem.column.copy() operations.invoke(elem) -- 2.47.2