From 787ddc9ac78db61b8db91874f0e073497ecb3da6 Mon Sep 17 00:00:00 2001 From: Florian Rathgeber Date: Sat, 6 Jun 2020 23:50:06 +0200 Subject: [PATCH] Drop Python 2 support --- CHANGELOG.rst | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e0d7a67..924bece 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,7 @@ Change Log 0.3.8 - 2020-06-06 ------------------ +* Drop Python 2 support * Windows compatibility: "" quote Python interpreter path (#115, @fcollonval) * Add ``--dry-run`` flag (#122) * Support specifying ``keep_output`` as a cell tag (#117, @scottcode) diff --git a/setup.py b/setup.py index 0878af8..f394fd4 100644 --- a/setup.py +++ b/setup.py @@ -47,11 +47,11 @@ "Framework :: IPython", "Intended Audience :: Developers", "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Version Control", ])