Skip to content

Commit 24b6407

Browse files
authored
Merge pull request #744 from seleniumbase/update-python-dependencies
Update Python dependencies
2 parents cf531f5 + 3aa1af4 commit 24b6407

File tree

7 files changed

+17
-16
lines changed

7 files changed

+17
-16
lines changed

examples/presenter/py_virtual_envs.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ def test_py_virtual_envs(self):
88
self.add_slide(
99
'<h2>Python Virtual Environments:</h2><br />\n'
1010
'<h2>What, Why, and How</h2><hr /><br />\n'
11-
'\n'
12-
'<h3>Presented by <b>Michael Mintz</b></h3>')
11+
'<h3>Presented by <b>Michael Mintz</b></h3>\n'
12+
'<p>Granite State Code Camp - Sat, Nov 14, 2020</p>')
1313
self.add_slide(
1414
'<p><b>About me:</b></p>\n'
1515
'<ul>'
@@ -108,15 +108,15 @@ def test_py_virtual_envs(self):
108108
'<p><b>List of commands from virtualenvwrapper</b></p>'
109109
'<hr /><br />',
110110
code=(
111-
'# Creating a virtual environment:\n'
111+
'# Create a virtual environment:\n'
112112
'mkvirtualenv ENV_NAME\n\n'
113-
'# Leaving your virtual environment:\n'
113+
'# Leave your virtual environment:\n'
114114
'deactivate\n\n'
115-
'# Returning to a virtual environment:\n'
115+
'# Return to a virtual environment:\n'
116116
'workon ENV_NAME\n\n'
117-
'# Listing all virtual environments:\n'
118-
'lsvirtualenv # OR "workon"\n\n'
119-
'# Deleting a virtual environment:\n'
117+
'# List all virtual environments:\n'
118+
'workon\n\n'
119+
'# Delete a virtual environment:\n'
120120
'rmvirtualenv ENV_NAME'))
121121
self.add_slide(
122122
'<p><b>Determining if you are in a virtual env</b></p>'

examples/test_skype_site.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_skype_website_on_mobile(self):
3030
self.assert_text("Skype for Mobile", "h2")
3131
self.highlight("h2")
3232
self.highlight("#get-skype-0")
33-
self.highlight_click('span[aria-label="Get Skype for Android"]')
33+
self.highlight_click('[data-bi-name="arrow-dropdown-mobile"]')
3434
self.highlight('#get-skype-0_android-download')
3535
self.highlight('[data-bi-id*="ios"]')
3636
self.highlight('[data-bi-id*="windows10"]')

help_docs/ReadMe.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
<div><a href="https://seleniumbase.io/other/presenter.html"><b>Presenter Demo</b></a></div>
7676
<div><a href="https://seleniumbase.io/other/core_presentation.html"><b>Core Presentation</b></a></div>
7777
<div><a href="https://seleniumbase.io/other/chart_presentation.html"><b>Chart Maker Demo</b></a></div>
78+
<div><a href="https://seleniumbase.io/other/py_virtual_envs.html"><b>Python Virtual Envs</b></a></div>
7879

7980
--------
8081

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ packaging>=20.7
33
setuptools>=44.1.1;python_version<"3.5"
44
setuptools>=50.3.2;python_version>="3.5"
55
setuptools-scm>=4.1.2
6-
wheel>=0.35.1
6+
wheel>=0.36.0
77
attrs>=20.3.0
88
certifi>=2020.11.8
99
six==1.15.0
@@ -68,7 +68,7 @@ toml==0.10.2
6868
Pillow==6.2.2;python_version<"3.5"
6969
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
7070
Pillow==8.0.1;python_version>="3.6"
71-
rich==9.2.0;python_version>="3.6" and python_version<"4.0"
71+
rich==9.3.0;python_version>="3.6" and python_version<"4.0"
7272
zipp==1.2.0;python_version<"3.6"
7373
zipp==3.4.0;python_version>="3.6"
7474
flake8==3.7.9;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.50.15"
2+
__version__ = "1.50.16"

seleniumbase/config/proxy_list.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"""
2121

2222
PROXY_LIST = {
23-
"example1": "212.87.220.2:3128", # (Example) - set your own proxy here
24-
"example2": "51.75.147.44:3128", # (Example) - set your own proxy here
23+
"example1": "134.209.128.61:3128", # (Example) - set your own proxy here
24+
"example2": "165.227.83.185:3128", # (Example) - set your own proxy here
2525
"example3": "82.200.233.4:3128", # (Example) - set your own proxy here
2626
"proxy1": None,
2727
"proxy2": None,

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
'setuptools>=44.1.1;python_version<"3.5"',
108108
'setuptools>=50.3.2;python_version>="3.5"',
109109
'setuptools-scm',
110-
'wheel>=0.35.1',
110+
'wheel>=0.36.0',
111111
'attrs>=20.3.0',
112112
'certifi>=2020.11.8',
113113
'six',
@@ -172,7 +172,7 @@
172172
'Pillow==6.2.2;python_version<"3.5"',
173173
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
174174
'Pillow==8.0.1;python_version>="3.6"',
175-
'rich==9.2.0;python_version>="3.6" and python_version<"4.0"',
175+
'rich==9.3.0;python_version>="3.6" and python_version<"4.0"',
176176
'zipp==1.2.0;python_version<"3.6"',
177177
'zipp==3.4.0;python_version>="3.6"',
178178
'flake8==3.7.9;python_version<"3.5"',

0 commit comments

Comments
 (0)