Skip to content

Commit 0349e99

Browse files
committed
Update Python dependencies
1 parent 90a0b08 commit 0349e99

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ requests==2.25.1
2424
selenium==3.141.0
2525
msedge-selenium-tools==3.141.3
2626
more-itertools==5.0.0;python_version<"3.5"
27-
more-itertools==8.6.0;python_version>="3.5"
27+
more-itertools==8.7.0;python_version>="3.5"
2828
cssselect==1.1.0
2929
pluggy==0.13.1
3030
py==1.8.1;python_version<"3.5"
@@ -42,23 +42,23 @@ pytest-ordering==0.6
4242
pytest-rerunfailures==8.0;python_version<"3.5"
4343
pytest-rerunfailures==9.1.1;python_version>="3.5"
4444
pytest-xdist==1.34.0;python_version<"3.5"
45-
pytest-xdist==2.2.0;python_version>="3.5"
45+
pytest-xdist==2.2.1;python_version>="3.5"
4646
parameterized==0.8.1
4747
soupsieve==1.9.6;python_version<"3.5"
4848
soupsieve==2.0.1;python_version>="3.5" and python_version<"3.6"
49-
soupsieve==2.1;python_version>="3.6"
49+
soupsieve==2.2;python_version>="3.6"
5050
beautifulsoup4==4.9.3
5151
cryptography==2.9.2;python_version<"3.5"
5252
cryptography==3.0;python_version>="3.5" and python_version<"3.6"
53-
cryptography==3.3.1;python_version>="3.6"
53+
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"
5757
pygments==2.7.4;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"
61-
prompt-toolkit==3.0.14;python_version>="3.6"
61+
prompt-toolkit==3.0.15;python_version>="3.6"
6262
ipython==5.10.0;python_version<"3.5"
6363
ipython==6.5.0;python_version>="3.5" and python_version<"3.6"
6464
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
5050
os.system("python -m pip install --upgrade 'twine>=1.15.0'")
5151
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
52-
os.system("python -m pip install --upgrade 'tqdm>=4.56.0'")
52+
os.system("python -m pip install --upgrade 'tqdm>=4.56.2'")
5353
print("\n*** Publishing The Release to PyPI: ***\n")
5454
os.system('python -m twine upload dist/*') # Requires ~/.pypirc Keys
5555
print("\n*** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n")
@@ -128,7 +128,7 @@
128128
'selenium==3.141.0',
129129
'msedge-selenium-tools==3.141.3',
130130
'more-itertools==5.0.0;python_version<"3.5"',
131-
'more-itertools==8.6.0;python_version>="3.5"',
131+
'more-itertools==8.7.0;python_version>="3.5"',
132132
'cssselect==1.1.0',
133133
'pluggy==0.13.1',
134134
'py==1.8.1;python_version<"3.5"',
@@ -146,15 +146,15 @@
146146
'pytest-rerunfailures==8.0;python_version<"3.5"',
147147
'pytest-rerunfailures==9.1.1;python_version>="3.5"',
148148
'pytest-xdist==1.34.0;python_version<"3.5"',
149-
'pytest-xdist==2.2.0;python_version>="3.5"',
149+
'pytest-xdist==2.2.1;python_version>="3.5"',
150150
'parameterized==0.8.1',
151151
'soupsieve==1.9.6;python_version<"3.5"',
152152
'soupsieve==2.0.1;python_version>="3.5" and python_version<"3.6"',
153-
'soupsieve==2.1;python_version>="3.6"',
153+
'soupsieve==2.2;python_version>="3.6"',
154154
'beautifulsoup4==4.9.3',
155155
'cryptography==2.9.2;python_version<"3.5"',
156156
'cryptography==3.0;python_version>="3.5" and python_version<"3.6"',
157-
'cryptography==3.3.1;python_version>="3.6"',
157+
'cryptography==3.3.2;python_version>="3.6"',
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"',
@@ -163,7 +163,7 @@
163163
'traitlets==5.0.5;python_version>="3.7"',
164164
'ipython==5.10.0;python_version<"3.5"',
165165
'prompt-toolkit==1.0.18;python_version<"3.6"',
166-
'prompt-toolkit==3.0.14;python_version>="3.6"',
166+
'prompt-toolkit==3.0.15;python_version>="3.6"',
167167
'ipython==6.5.0;python_version>="3.5" and python_version<"3.6"',
168168
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
169169
'ipython==7.20.0;python_version>="3.7"',

0 commit comments

Comments
 (0)