Skip to content

Commit 586582c

Browse files
[py] Bump versions to a7
1 parent 37e592c commit 586582c

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ py_wheel(
8585
strip_path_prefixes = [
8686
"py",
8787
],
88-
version = "4.0.0.a6",
88+
version = "4.0.0.a7",
8989
visibility = ["//visibility:public"],
9090
deps = [
9191
":selenium-pkg",

py/docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Several browsers/drivers are supported (Firefox, Chrome, Internet Explorer), as
2626
Supported Python Versions
2727
=========================
2828

29-
* Python 2.7, 3.5+
29+
* Python 3.7+
3030

3131
Installing
3232
==========
@@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3535

3636
pip install -U selenium
3737

38-
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.0.0a6.tar.gz), unarchive it, and run::
38+
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.0.0a7.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.0.0a6"
19+
__version__ = "4.0.0a7"

py/selenium/webdriver/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424
from .ie.options import Options as IeOptions # noqa
2525
from .edge.webdriver import WebDriver as Edge # noqa
2626
from .edge.webdriver import WebDriver as ChromiumEdge # noqa
27-
from .edge.options import Options as EdgeOptions # noqa
27+
from .edge.options import Options as EdgeOptions # noqa
2828
from .opera.webdriver import WebDriver as Opera # noqa
2929
from .safari.webdriver import WebDriver as Safari # noqa
30-
from .webkitgtk.webdriver import WebDriver as WebKitGTK # noqa
31-
from .webkitgtk.options import Options as WebKitGTKOptions # noqa
32-
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
33-
from .wpewebkit.options import Options as WPEWebKitOptions # noqa
30+
from .webkitgtk.webdriver import WebDriver as WebKitGTK # noqa
31+
from .webkitgtk.options import Options as WebKitGTKOptions # noqa
32+
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
33+
from .wpewebkit.options import Options as WPEWebKitOptions # noqa
3434
from .remote.webdriver import WebDriver as Remote # noqa
3535
from .common.desired_capabilities import DesiredCapabilities # noqa
3636
from .common.action_chains import ActionChains # noqa
3737
from .common.touch_actions import TouchActions # noqa
3838
from .common.proxy import Proxy # noqa
3939

40-
__version__ = '4.0.0a6'
40+
__version__ = '4.0.0a7'

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup_args = {
2828
'cmdclass': {'install': install},
2929
'name': 'selenium',
30-
'version': "4.0.0a6post2",
30+
'version': "4.0.0a7",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)