]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
correct python compat statement
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 14 Oct 2022 15:33:54 +0000 (11:33 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 14 Oct 2022 15:35:01 +0000 (11:35 -0400)
2.0 uses 3.7 at a minimum, update verbiage here.

Change-Id: I076e205bbfc9b502f1ac382f6292c290c3fc8c1b
(cherry picked from commit cb0dd78f584cea4f169a47a2f4660300f4a6e081)

doc/build/changelog/migration_20.rst

index d0d92c0b9686ac6030a29c64ac2afb312a44b958..4e738e948e4fade57967fba0280a605201e2c20a 100644 (file)
@@ -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: