From 73adfc952265cc9496001e1a71e5403a98e20dcd Mon Sep 17 00:00:00 2001 From: Mateusz Kajka <18029907+codemrkay@users.noreply.github.com> Date: Tue, 3 Mar 2020 21:53:52 +0100 Subject: [PATCH] [py] update python_requires to only support python 2.7 and Python3.5+(#8085) --- README.md | 2 +- py/docs/source/index.rst | 2 +- py/setup.py | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 052f608be130c..9af4ca4d42c78 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ the “build maintainer” who's experimenting with a JRuby upgrade. ### Optional Requirements -* Python 3.4+ (if you want to run Python tests for this version) +* Python 3.5+ (if you want to run Python tests for this version) * Ruby 2.0 ### Internet Explorer Driver diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index e29244b4bf30f..1edf774dfc1b9 100644 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -26,7 +26,7 @@ Several browsers/drivers are supported (Firefox, Chrome, Internet Explorer), as Supported Python Versions ========================= -* Python 2.7, 3.4+ +* Python 2.7, 3.5+ Installing ========== diff --git a/py/setup.py b/py/setup.py index 56a79ff2bd5bf..625b100bfb37b 100755 --- a/py/setup.py +++ b/py/setup.py @@ -32,7 +32,7 @@ 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(), 'url': 'https://github.com/SeleniumHQ/selenium/', - 'python_requires': '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + 'python_requires': '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', 'classifiers': ['Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', @@ -43,7 +43,6 @@ 'Topic :: Software Development :: Libraries', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6'], 'package_dir': {