Skip to content

Commit a3c710e

Browse files
authored
Merge pull request #2458 from seleniumbase/dependencies-and-uc-mode-timing
Refresh dependencies and UC Mode timing
2 parents fc6e7d5 + 439922b commit a3c710e

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

mkdocs_build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ lxml==5.1.0
2020
pyquery==2.0.0
2121
readtime==3.0.0
2222
mkdocs==1.5.3
23-
mkdocs-material==9.5.5
23+
mkdocs-material==9.5.6
2424
mkdocs-exclude-search==0.6.6
2525
mkdocs-simple-hooks==0.1.5
2626
mkdocs-material-extensions==1.3.1

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ filelock>=3.13.1;python_version>="3.8"
1010
platformdirs>=4.0.0;python_version<"3.8"
1111
platformdirs>=4.1.0;python_version>="3.8"
1212
typing-extensions>=4.9.0;python_version>="3.8"
13-
parse>=1.20.0
13+
parse>=1.20.1
1414
parse-type>=0.6.2
1515
pyyaml>=6.0.1
1616
six==1.16.0
@@ -38,7 +38,8 @@ iniconfig==2.0.0
3838
pluggy==1.2.0;python_version<"3.8"
3939
pluggy==1.4.0;python_version>="3.8"
4040
py==1.11.0
41-
pytest==7.4.4
41+
pytest==7.4.4;python_version<"3.8"
42+
pytest==8.0.0;python_version>="3.8"
4243
pytest-html==2.0.1
4344
pytest-metadata==3.0.0
4445
pytest-ordering==0.6
@@ -67,7 +68,7 @@ rich==13.7.0
6768

6869
coverage==6.2;python_version<"3.7"
6970
coverage==7.2.7;python_version>="3.7" and python_version<"3.8"
70-
coverage==7.4.0;python_version>="3.8"
71+
coverage==7.4.1;python_version>="3.8"
7172
pytest-cov==4.0.0;python_version<"3.7"
7273
pytest-cov==4.1.0;python_version>="3.7"
7374
flake8==5.0.4;python_version<"3.9"

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.23.1"
2+
__version__ = "4.23.2"

seleniumbase/fixtures/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ class Mobile:
362362

363363

364364
class UC:
365-
RECONNECT_TIME = 2.28 # Seconds
365+
RECONNECT_TIME = 2.32 # Seconds
366366

367367

368368
class ValidBrowsers:

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
'platformdirs>=4.0.0;python_version<"3.8"',
144144
'platformdirs>=4.1.0;python_version>="3.8"',
145145
'typing-extensions>=4.9.0;python_version>="3.8"',
146-
'parse>=1.20.0',
146+
'parse>=1.20.1',
147147
'parse-type>=0.6.2',
148148
'pyyaml>=6.0.1',
149149
"six==1.16.0",
@@ -171,7 +171,8 @@
171171
'pluggy==1.2.0;python_version<"3.8"',
172172
'pluggy==1.4.0;python_version>="3.8"',
173173
"py==1.11.0",
174-
'pytest==7.4.4',
174+
'pytest==7.4.4;python_version<"3.8"',
175+
'pytest==8.0.0;python_version>="3.8"',
175176
"pytest-html==2.0.1", # Newer ones had issues
176177
'pytest-metadata==3.0.0',
177178
"pytest-ordering==0.6",
@@ -208,7 +209,7 @@
208209
# Usage: coverage run -m pytest; coverage html; coverage report
209210
"coverage": [
210211
'coverage==7.2.7;python_version<"3.8"',
211-
'coverage==7.4.0;python_version>="3.8"',
212+
'coverage==7.4.1;python_version>="3.8"',
212213
'pytest-cov==4.1.0',
213214
],
214215
# pip install -e .[flake8]

0 commit comments

Comments
 (0)