Skip to content

Commit 98dce17

Browse files
committed
Update Python dependencies
1 parent 8b89f01 commit 98dce17

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

requirements.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ wheel>=0.34.2
77
six==1.15.0
88
nose==1.3.7
99
ipdb==0.13.3
10+
parso==0.7.1
1011
jedi==0.17.2
1112
idna==2.10
1213
chardet==3.0.4
@@ -38,17 +39,17 @@ pygments==2.5.2;python_version<"3.5"
3839
pygments==2.6.1;python_version>="3.5"
3940
colorama==0.4.3
4041
pymysql==0.10.0
42+
coverage==5.2.1
4143
brython>=3.8.9
42-
coverage==5.2
4344
pyotp==2.3.0
4445
boto==2.49.0
4546
cffi==1.14.0
46-
rich==3.4.1;python_version>="3.6" and python_version<"4.0"
47+
rich==4.1.0;python_version>="3.6" and python_version<"4.0"
4748
flake8==3.7.9;python_version<"3.5"
4849
flake8==3.8.3;python_version>="3.5"
4950
pyflakes==2.1.1;python_version<"3.5"
5051
pyflakes==2.2.0;python_version>="3.5"
5152
certifi>=2020.6.20
52-
allure-pytest==2.8.16
53+
allure-pytest==2.8.17
5354
pdfminer.six==20191110;python_version<"3.5"
54-
pdfminer.six==20200720;python_version>="3.5"
55+
pdfminer.six==20200726;python_version>="3.5"

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
'six',
100100
'nose',
101101
'ipdb',
102+
'parso==0.7.1', # The last version for Python 2 and 3.5
102103
'jedi==0.17.2', # The last version for Python 2 and 3.5
103104
'idna==2.10', # Must stay in sync with "requests"
104105
'chardet==3.0.4', # Must stay in sync with "requests"
@@ -130,20 +131,20 @@
130131
'pygments==2.6.1;python_version>="3.5"',
131132
'colorama==0.4.3',
132133
'pymysql==0.10.0',
134+
'coverage==5.2.1',
133135
'brython>=3.8.9',
134-
'coverage==5.2',
135136
'pyotp==2.3.0',
136137
'boto==2.49.0',
137138
'cffi==1.14.0',
138-
'rich==3.4.1;python_version>="3.6" and python_version<"4.0"',
139+
'rich==4.1.0;python_version>="3.6" and python_version<"4.0"',
139140
'flake8==3.7.9;python_version<"3.5"',
140141
'flake8==3.8.3;python_version>="3.5"',
141142
'pyflakes==2.1.1;python_version<"3.5"',
142143
'pyflakes==2.2.0;python_version>="3.5"',
143144
'certifi>=2020.6.20',
144-
'allure-pytest==2.8.16',
145+
'allure-pytest==2.8.17',
145146
'pdfminer.six==20191110;python_version<"3.5"',
146-
'pdfminer.six==20200720;python_version>="3.5"',
147+
'pdfminer.six==20200726;python_version>="3.5"',
147148
],
148149
packages=[
149150
'seleniumbase',

0 commit comments

Comments
 (0)