From: Mike Bayer Date: Fri, 14 Oct 2022 15:33:54 +0000 (-0400) Subject: correct python compat statement X-Git-Tag: rel_1_4_42~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b633102fe79862155be58e4466cc999da6560ed9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git correct python compat statement 2.0 uses 3.7 at a minimum, update verbiage here. Change-Id: I076e205bbfc9b502f1ac382f6292c290c3fc8c1b (cherry picked from commit cb0dd78f584cea4f169a47a2f4660300f4a6e081) --- diff --git a/doc/build/changelog/migration_20.rst b/doc/build/changelog/migration_20.rst index d0d92c0b96..4e738e948e 100644 --- a/doc/build/changelog/migration_20.rst +++ b/doc/build/changelog/migration_20.rst @@ -117,21 +117,16 @@ as being in this realm are as follows: For the full overview of SQLAlchemy 1.4 changes, see the :doc:`/changelog/migration_14` document. -Migration to 2.0 Step One - Python 3 only (Python 3.6 minimum) --------------------------------------------------------------- - -SQLAlchemy 2.0 was first inspired by the fact that Python 2's EOL was in -2020. SQLAlchemy is taking a longer period of time than other major -projects to drop Python 2.7 support, since it is not too much in the way -of things for the moment. However, version 2.0 hopes to start embracing -:pep:`484` and other new features to a great degree, so it is likely -that release 1.4 will be the last Python 2 supporting version, even if -there is a SQLAlchemy 1.5 (which is also unlikely at the moment). - -In order to use SQLAlchemy 2.0, the application will need to be runnable on -at least **Python 3.6** as of this writing. SQLAlchemy 1.4 now supports -Python 3.6 or newer within the Python 3 series; throughout the 1.4 series, -the application can remain running on Python 2.7 or on at least Python 3.6. +Migration to 2.0 Step One - Python 3 only (Python 3.7 minimum for 2.0 compatibility) +------------------------------------------------------------------------------------ + +SQLAlchemy 2.0 was first inspired by the fact that Python 2's EOL was in 2020. +SQLAlchemy is taking a longer period of time than other major projects to drop +Python 2.7 support. However, in order to use SQLAlchemy 2.0, the application +will need to be runnable on at least **Python 3.7**. SQLAlchemy 1.4 supports +Python 3.6 or newer within the Python 3 series; throughout the 1.4 series, the +application can remain running on Python 2.7 or on at least Python 3.6. Version +2.0 however starts at Python 3.7. .. _migration_20_deprecations_mode: