File tree Expand file tree Collapse file tree 7 files changed +9
-6
lines changed Expand file tree Collapse file tree 7 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -582,7 +582,7 @@ namespace :py do
582582 desc 'Update Python version'
583583 task :version , [ :version ] do |_task , arguments |
584584 old_version = python_version
585- nightly = ".dev #{ Time . now . strftime ( '%Y%m%d%H%M' ) } "
585+ nightly = ".#{ Time . now . strftime ( '%Y%m%d%H%M' ) } "
586586 new_version = updated_version ( old_version , arguments [ :version ] , nightly )
587587
588588 [ 'py/setup.py' ,
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ compile_pip_requirements(
6262 ],
6363)
6464
65- SE_VERSION = "4.27.0.dev202410311942 "
65+ SE_VERSION = "4.27.0.202410311942 "
6666
6767BROWSER_VERSIONS = [
6868 "v85" ,
Original file line number Diff line number Diff line change 1+ Selenium 4.27.0.202410311942
2+
3+
14Selenium 4.26.1
25* DeprecationWarning raised in default webdriver init (#14690)
36* Remote connection use timeout from ClientConfig (#14692)
Original file line number Diff line number Diff line change 5858# The short X.Y version.
5959version = '4.27'
6060# The full version, including alpha/beta/rc tags.
61- release = '4.27.0.dev202410311942 '
61+ release = '4.27.0.202410311942 '
6262
6363# The language for content autogenerated by Sphinx. Refer to documentation
6464# for a list of supported languages.
Original file line number Diff line number Diff line change 1616# under the License.
1717
1818
19- __version__ = "4.27.0.dev202410311942 "
19+ __version__ = "4.27.0.202410311942 "
Original file line number Diff line number Diff line change 4444from .wpewebkit .service import Service as WPEWebKitService # noqa
4545from .wpewebkit .webdriver import WebDriver as WPEWebKit # noqa
4646
47- __version__ = "4.27.0.dev202410311942 "
47+ __version__ = "4.27.0.202410311942 "
4848
4949# We need an explicit __all__ because the above won't otherwise be exported.
5050__all__ = [
Original file line number Diff line number Diff line change 2828setup_args = {
2929 'cmdclass' : {'install' : install },
3030 'name' : 'selenium' ,
31- 'version' : "4.27.0.dev202410311942 " ,
31+ 'version' : "4.27.0.202410311942 " ,
3232 'license' : 'Apache 2.0' ,
3333 'description' : 'Official Python bindings for Selenium WebDriver.' ,
3434 'long_description' : open (join (abspath (dirname (__file__ )), "README.rst" )).read (),
You can’t perform that action at this time.
0 commit comments