Skip to content

Commit c61802b

Browse files
authored
Merge pull request #813 from seleniumbase/update-python-dependencies
Update Python dependencies
2 parents b7c5718 + 7a467d7 commit c61802b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/ip_cow_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class MyTestClass(BaseCase):
66

77
def test_ip_cow(self):
88
self.open('https://www.ipcow.com/')
9-
ip_data = self.get_text("table tbody")
9+
ip_data = self.get_text("div.box")
1010
print("\n\n*** IP and Browser Data: ***")
1111
print(ip_data)
1212
print("\nThe browser will close automatically in 7 seconds...")

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ cryptography==3.3.2;python_version>="3.6"
5454
pyopenssl==19.1.0;python_version<"3.6"
5555
pyopenssl==20.0.1;python_version>="3.6"
5656
pygments==2.5.2;python_version<"3.5"
57-
pygments==2.7.4;python_version>="3.5"
57+
pygments==2.8.0;python_version>="3.5"
5858
traitlets==4.3.3;python_version<"3.7"
5959
traitlets==5.0.5;python_version>="3.7"
6060
prompt-toolkit==1.0.18;python_version<"3.6"
@@ -78,7 +78,7 @@ toml==0.10.2
7878
Pillow==6.2.2;python_version<"3.5"
7979
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
8080
Pillow==8.1.0;python_version>="3.6"
81-
rich==9.10.0;python_version>="3.6" and python_version<"4.0"
81+
rich==9.11.0;python_version>="3.6" and python_version<"4.0"
8282
flake8==3.7.9;python_version<"3.5"
8383
flake8==3.8.4;python_version>="3.5"
8484
pyflakes==2.1.1;python_version<"3.5"

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__ = "1.55.3"
2+
__version__ = "1.55.4"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
'pyopenssl==19.1.0;python_version<"3.6"',
159159
'pyopenssl==20.0.1;python_version>="3.6"',
160160
'pygments==2.5.2;python_version<"3.5"',
161-
'pygments==2.7.4;python_version>="3.5"',
161+
'pygments==2.8.0;python_version>="3.5"',
162162
'traitlets==4.3.3;python_version<"3.7"',
163163
'traitlets==5.0.5;python_version>="3.7"',
164164
'prompt-toolkit==1.0.18;python_version<"3.6"',
@@ -182,7 +182,7 @@
182182
'Pillow==6.2.2;python_version<"3.5"',
183183
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
184184
'Pillow==8.1.0;python_version>="3.6"',
185-
'rich==9.10.0;python_version>="3.6" and python_version<"4.0"',
185+
'rich==9.11.0;python_version>="3.6" and python_version<"4.0"',
186186
'flake8==3.7.9;python_version<"3.5"',
187187
'flake8==3.8.4;python_version>="3.5"',
188188
'pyflakes==2.1.1;python_version<"3.5"',

0 commit comments

Comments
 (0)