chromedriver-binary 136.0.7075.0.0__tar.gz → 136.0.7078.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.2
1
+ Metadata-Version: 2.4
2
2
  Name: chromedriver-binary
3
- Version: 136.0.7075.0.0
3
+ Version: 136.0.7078.0.0
4
4
  Summary: Installer for chromedriver.
5
5
  Home-page: https://github.com/danielkaiser/python-chromedriver-binary
6
6
  Author: Daniel Kaiser
@@ -22,10 +22,11 @@ Dynamic: description-content-type
22
22
  Dynamic: home-page
23
23
  Dynamic: keywords
24
24
  Dynamic: license
25
+ Dynamic: license-file
25
26
  Dynamic: summary
26
27
 
27
28
  # chromedriver-binary
28
- Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 136.0.7075.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
29
+ Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 136.0.7078.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
29
30
 
30
31
  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.
31
32
 
@@ -1,5 +1,5 @@
1
1
  # chromedriver-binary
2
- Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 136.0.7075.0 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 136.0.7078.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.2
1
+ Metadata-Version: 2.4
2
2
  Name: chromedriver-binary
3
- Version: 136.0.7075.0.0
3
+ Version: 136.0.7078.0.0
4
4
  Summary: Installer for chromedriver.
5
5
  Home-page: https://github.com/danielkaiser/python-chromedriver-binary
6
6
  Author: Daniel Kaiser
@@ -22,10 +22,11 @@ Dynamic: description-content-type
22
22
  Dynamic: home-page
23
23
  Dynamic: keywords
24
24
  Dynamic: license
25
+ Dynamic: license-file
25
26
  Dynamic: summary
26
27
 
27
28
  # chromedriver-binary
28
- Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 136.0.7075.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
29
+ Downloads and installs the [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) binary version 136.0.7078.0 for automated testing of webapps. The installer supports Linux, MacOS and Windows operating systems.
29
30
 
30
31
  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.
31
32
 
@@ -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='136.0.7075.0'
31
+ chromedriver_version='136.0.7078.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="136.0.7075.0.0",
68
+ version="136.0.7078.0.0",
69
69
  author="Daniel Kaiser",
70
70
  author_email="daniel.kaiser94@gmail.com",
71
71
  description="Installer for chromedriver.",