chromedriver-binary 125.0.6422.26.0__tar.gz → 134.0.6957.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: chromedriver-binary
3
- Version: 125.0.6422.26.0
3
+ Version: 134.0.6957.0.0
4
4
  Summary: Installer for chromedriver.
5
5
  Home-page: https://github.com/danielkaiser/python-chromedriver-binary
6
6
  Author: Daniel Kaiser
@@ -14,9 +14,18 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
14
14
  Classifier: License :: OSI Approved :: MIT License
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: home-page
23
+ Dynamic: keywords
24
+ Dynamic: license
25
+ Dynamic: summary
17
26
 
18
27
  # chromedriver-binary
19
- Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 125.0.6422.26 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
28
+ Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 134.0.6957.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
20
29
 
21
30
  Alternatively the package [chromedriver-binary-auto](https://pypi.org/project/chromedriver-binary-auto/) can be used to automatically detect the latest chromedriver version required for the installed Chrome/Chromium browser.
22
31
 
@@ -1,5 +1,5 @@
1
1
  # chromedriver-binary
2
- Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 125.0.6422.26 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
2
+ Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 134.0.6957.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
3
3
 
4
4
  Alternatively the package [chromedriver-binary-auto](https://pypi.org/project/chromedriver-binary-auto/) can be used to automatically detect the latest chromedriver version required for the installed Chrome/Chromium browser.
5
5
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: chromedriver-binary
3
- Version: 125.0.6422.26.0
3
+ Version: 134.0.6957.0.0
4
4
  Summary: Installer for chromedriver.
5
5
  Home-page: https://github.com/danielkaiser/python-chromedriver-binary
6
6
  Author: Daniel Kaiser
@@ -14,9 +14,18 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
14
14
  Classifier: License :: OSI Approved :: MIT License
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: home-page
23
+ Dynamic: keywords
24
+ Dynamic: license
25
+ Dynamic: summary
17
26
 
18
27
  # chromedriver-binary
19
- Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 125.0.6422.26 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
28
+ Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 134.0.6957.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
20
29
 
21
30
  Alternatively the package [chromedriver-binary-auto](https://pypi.org/project/chromedriver-binary-auto/) can be used to automatically detect the latest chromedriver version required for the installed Chrome/Chromium browser.
22
31
 
@@ -28,7 +28,7 @@ class DownloadChromedriver(build_py):
28
28
  Downloads, unzips and installs chromedriver.
29
29
  If a chromedriver binary is found in PATH it will be copied, otherwise downloaded.
30
30
  """
31
- chromedriver_version='125.0.6422.26'
31
+ chromedriver_version='134.0.6957.0'
32
32
  chromedriver_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'chromedriver_binary')
33
33
  chromedriver_filename = find_binary_in_path(get_chromedriver_filename())
34
34
  if chromedriver_filename and check_version(chromedriver_filename, chromedriver_version):
@@ -65,7 +65,7 @@ class DownloadChromedriver(build_py):
65
65
 
66
66
  setup(
67
67
  name="chromedriver-binary",
68
- version="125.0.6422.26.0",
68
+ version="134.0.6957.0.0",
69
69
  author="Daniel Kaiser",
70
70
  author_email="daniel.kaiser94@gmail.com",
71
71
  description="Installer for chromedriver.",