Skip to content

Commit

Permalink
[py] Bumping Python for nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Feb 17, 2024
1 parent 335df5d commit 32cf182
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Expand Up @@ -36,7 +36,7 @@ compile_pip_requirements(
],
)

SE_VERSION = "4.17.2"
SE_VERSION = "4.18.0.nightly"

BROWSER_VERSIONS = [
"v85",
Expand Down
3 changes: 3 additions & 0 deletions py/CHANGES
@@ -1,3 +1,6 @@
Selenium 4.17.2


Selenium 4.17.2
* [py] Correct typing_extension dependency for wheel generation

Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/conf.py
Expand Up @@ -56,9 +56,9 @@
# built documents.
#
# The short X.Y version.
version = '4.17'
version = '4.18'
# The full version, including alpha/beta/rc tags.
release = '4.17.2'
release = '4.18.0.nightly'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "4.17.2"
__version__ = "4.18.0.nightly"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Expand Up @@ -44,7 +44,7 @@
from .wpewebkit.service import Service as WPEWebKitService # noqa
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa

__version__ = "4.17.2"
__version__ = "4.18.0.nightly"

# We need an explicit __all__ because the above won't otherwise be exported.
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion py/setup.py
Expand Up @@ -27,7 +27,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "4.17.2",
'version': "4.18.0.nightly",
'license': 'Apache 2.0',
'description': 'Python bindings for Selenium',
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),
Expand Down

0 comments on commit 32cf182

Please sign in to comment.