Skip to content

Commit

Permalink
[py] update python_requires to only support python 2.7 and Python3.5+(S…
Browse files Browse the repository at this point in the history
  • Loading branch information
codemrkay committed Mar 3, 2020
1 parent eb1f423 commit 73adfc9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
==========
Expand Down
3 changes: 1 addition & 2 deletions py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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': {
Expand Down

0 comments on commit 73adfc9

Please sign in to comment.