From 5efdd48f719d9c3c7c8f9a812da2256d088eab78 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Sun, 5 Apr 2020 21:14:08 +0100 Subject: [PATCH] Goodbye python 2 --- README.rst | 4 ++-- setup.py | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 799657c4..88403e73 100644 --- a/README.rst +++ b/README.rst @@ -21,12 +21,12 @@ built-in function:: >>> import certifi >>> certifi.where() - '/usr/local/lib/python2.7/site-packages/certifi/cacert.pem' + '/usr/local/lib/python3.7/site-packages/certifi/cacert.pem' Or from the command line:: $ python -m certifi - /usr/local/lib/python2.7/site-packages/certifi/cacert.pem + /usr/local/lib/python3.7/site-packages/certifi/cacert.pem Enjoy! diff --git a/setup.py b/setup.py index f1cfef45..f6e3d103 100755 --- a/setup.py +++ b/setup.py @@ -54,9 +54,6 @@ 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', 'Natural Language :: English', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4',