Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Accruent/webdrivermanager
Browse files Browse the repository at this point in the history
…into clean-up-requirements

# Conflicts:
#	webdrivermanager/webdrivermanager.py
  • Loading branch information
neiljhowell committed Feb 1, 2024
2 parents cea5f04 + f390489 commit 25dc9c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
python-version: [ 3.7, 3.8, 3.9 ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion webdrivermanager/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

VERSION = '0.7.7'
VERSION = '0.8.0'


def get_version():
Expand Down
5 changes: 1 addition & 4 deletions webdrivermanager/webdrivermanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,10 +425,7 @@ def get_download_url(self, version='latest'):
chromedriver_list = chrome_driver_objects['channels']['Stable']['downloads']['chromedriver']

# Handle special case for 'win' to match the provided JSON structure
if self.os_name.lower() == "win":
platform = "{}{}".format(self.os_name.lower(), self.bitness)
else:
platform = "{}-{}".format(self.os_name.lower(), self.bitness)
platform = "{}{}".format(self.os_name.lower(), self.bitness)

url = None
filename = None
Expand Down

0 comments on commit 25dc9c8

Please sign in to comment.