Skip to content

Commit

Permalink
Merge pull request #2143 from seleniumbase/upgrading-selenium
Browse files Browse the repository at this point in the history
Upgrade to `selenium` `4.13.0`
  • Loading branch information
mdmintz authored Sep 27, 2023
2 parents c6d7dab + 2188cb0 commit 7e02aa0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ sniffio==1.3.0
h11==0.14.0
outcome==1.2.0
trio==0.22.2
trio-websocket==0.10.4
trio-websocket==0.10.4;python_version<"3.8"
trio-websocket==0.11.1;python_version>="3.8"
wsproto==1.2.0
selenium==4.11.2
selenium==4.11.2;python_version<"3.8"
selenium==4.13.0;python_version>="3.8"
cssselect==1.2.0
sortedcontainers==2.4.0
fasteners==0.19
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.18.9"
__version__ = "4.19.0"
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,11 @@
'h11==0.14.0',
'outcome==1.2.0',
'trio==0.22.2',
'trio-websocket==0.10.4',
'trio-websocket==0.10.4;python_version<"3.8"',
'trio-websocket==0.11.1;python_version>="3.8"',
'wsproto==1.2.0',
'selenium==4.11.2',
'selenium==4.11.2;python_version<"3.8"',
'selenium==4.13.0;python_version>="3.8"',
'cssselect==1.2.0',
"sortedcontainers==2.4.0",
'fasteners==0.19',
Expand Down

0 comments on commit 7e02aa0

Please sign in to comment.