From 05738a4aa822b4a98cf750cfd093ba6a19353b11 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Fri, 28 Jun 2019 18:03:42 -0500 Subject: [PATCH 1/4] 3.5.2 version bump note --- doc/source/whatsnew/v0.25.0.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/source/whatsnew/v0.25.0.rst b/doc/source/whatsnew/v0.25.0.rst index 28bf796be404a..a572322697177 100644 --- a/doc/source/whatsnew/v0.25.0.rst +++ b/doc/source/whatsnew/v0.25.0.rst @@ -5,9 +5,13 @@ What's new in 0.25.0 (April XX, 2019) .. warning:: - Starting with the 0.25.x series of releases, pandas only supports Python 3.5 and higher. + Starting with the 0.25.x series of releases, pandas only supports Python 3.5.2 and higher. See :ref:`install.dropping-27` for more details. +.. warning:: + + The minimum supported Python version will be bumped to 3.6 in a future release. + .. warning:: `Panel` has been fully removed. For N-D labeled data structures, please From dd27fe1d1e2118db6805a3c009ce28b29a7131b5 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Fri, 28 Jun 2019 18:11:10 -0500 Subject: [PATCH 2/4] Modified setup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0380c717ecb41..af7005f25c1c4 100755 --- a/setup.py +++ b/setup.py @@ -783,7 +783,7 @@ def srcpath(name=None, suffix='.pyx', subdir='src'): long_description=LONG_DESCRIPTION, classifiers=CLASSIFIERS, platforms='any', - python_requires='>=3.5', + python_requires='>=3.5.2', extras_require={ 'test': [ # sync with setup.cfg minversion & install.rst From 0293b5309e9753950dcca8916bfad20e53576677 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Sat, 29 Jun 2019 08:13:23 -0500 Subject: [PATCH 3/4] Pinned min python dep in CI --- ci/deps/azure-35-compat.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/deps/azure-35-compat.yaml b/ci/deps/azure-35-compat.yaml index fe207d122657b..46448929b9413 100644 --- a/ci/deps/azure-35-compat.yaml +++ b/ci/deps/azure-35-compat.yaml @@ -11,7 +11,7 @@ dependencies: - openpyxl=2.4.8 - pytables=3.4.2 - python-dateutil=2.6.1 - - python=3.5.* + - python=3.5.2 - pytz=2017.2 - scipy=0.19.0 - xlrd=1.1.0 From 19c2c2b464e621b71ba4b2650a597b7dc21b38bf Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Sat, 29 Jun 2019 09:20:11 -0500 Subject: [PATCH 4/4] bump to 3.5.3 --- ci/deps/azure-35-compat.yaml | 2 +- doc/source/whatsnew/v0.25.0.rst | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/deps/azure-35-compat.yaml b/ci/deps/azure-35-compat.yaml index 46448929b9413..97c45b2be27d7 100644 --- a/ci/deps/azure-35-compat.yaml +++ b/ci/deps/azure-35-compat.yaml @@ -11,7 +11,7 @@ dependencies: - openpyxl=2.4.8 - pytables=3.4.2 - python-dateutil=2.6.1 - - python=3.5.2 + - python=3.5.3 - pytz=2017.2 - scipy=0.19.0 - xlrd=1.1.0 diff --git a/doc/source/whatsnew/v0.25.0.rst b/doc/source/whatsnew/v0.25.0.rst index 80e8395d99aa1..99dde5daa972d 100644 --- a/doc/source/whatsnew/v0.25.0.rst +++ b/doc/source/whatsnew/v0.25.0.rst @@ -5,7 +5,7 @@ What's new in 0.25.0 (April XX, 2019) .. warning:: - Starting with the 0.25.x series of releases, pandas only supports Python 3.5.2 and higher. + Starting with the 0.25.x series of releases, pandas only supports Python 3.5.3 and higher. See :ref:`install.dropping-27` for more details. .. warning:: diff --git a/setup.py b/setup.py index af7005f25c1c4..19c22fc25733d 100755 --- a/setup.py +++ b/setup.py @@ -783,7 +783,7 @@ def srcpath(name=None, suffix='.pyx', subdir='src'): long_description=LONG_DESCRIPTION, classifiers=CLASSIFIERS, platforms='any', - python_requires='>=3.5.2', + python_requires='>=3.5.3', extras_require={ 'test': [ # sync with setup.cfg minversion & install.rst