File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ rich==13.7.1
71
71
72
72
coverage == 6.2 ;python_version < "3.7"
73
73
coverage == 7.2.7 ;python_version >= "3.7" and python_version<"3.8"
74
- coverage == 7.4.3 ;python_version >= "3.8"
74
+ coverage == 7.4.4 ;python_version >= "3.8"
75
75
pytest-cov == 4.0.0 ;python_version < "3.7"
76
76
pytest-cov == 4.1.0 ;python_version >= "3.7"
77
77
flake8 == 5.0.4 ;python_version < "3.9"
Original file line number Diff line number Diff line change 1
1
# seleniumbase package
2
- __version__ = "4.24.6 "
2
+ __version__ = "4.24.7 "
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ def linux_browser_apps_to_cmd(*apps):
97
97
98
98
99
99
def chrome_on_linux_path (prefer_chromium = False ):
100
- if os_name () != "linux" :
100
+ if os_name () != OSType . LINUX :
101
101
return ""
102
102
if prefer_chromium :
103
103
paths = ["/bin/chromium" , "/bin/chromium-browser" ]
@@ -127,7 +127,7 @@ def chrome_on_linux_path(prefer_chromium=False):
127
127
128
128
129
129
def edge_on_linux_path ():
130
- if os_name () != "linux" :
130
+ if os_name () != OSType . LINUX :
131
131
return ""
132
132
paths = os .environ ["PATH" ].split (os .pathsep )
133
133
binaries = []
@@ -144,7 +144,7 @@ def edge_on_linux_path():
144
144
145
145
146
146
def chrome_on_windows_path ():
147
- if os_name () != "win32" :
147
+ if os_name () != OSType . WIN :
148
148
return ""
149
149
candidates = []
150
150
for item in map (
@@ -172,7 +172,7 @@ def chrome_on_windows_path():
172
172
173
173
174
174
def edge_on_windows_path ():
175
- if os_name () != "win32" :
175
+ if os_name () != OSType . WIN :
176
176
return ""
177
177
candidates = []
178
178
for item in map (
Original file line number Diff line number Diff line change 227
227
# Usage: coverage run -m pytest; coverage html; coverage report
228
228
"coverage" : [
229
229
'coverage==7.2.7;python_version<"3.8"' ,
230
- 'coverage==7.4.3 ;python_version>="3.8"' ,
230
+ 'coverage==7.4.4 ;python_version>="3.8"' ,
231
231
'pytest-cov==4.1.0' ,
232
232
],
233
233
# pip install -e .[flake8]
You can’t perform that action at this time.
0 commit comments