File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,10 @@ certifi>=2020.12.5
10
10
six == 1.15.0
11
11
nose == 1.3.7
12
12
ipdb == 0.13.4
13
- parso == 0.7.1
14
- jedi == 0.17.2
13
+ parso == 0.7.1 ;python_version < "3.6"
14
+ parso == 0.8.1 ;python_version >= "3.6"
15
+ jedi == 0.17.2 ;python_version < "3.6"
16
+ jedi == 0.18.0 ;python_version >= "3.6"
15
17
idna == 2.10
16
18
chardet == 3.0.4 ;python_version < "3.6"
17
19
chardet == 4.0.0 ;python_version >= "3.6"
Original file line number Diff line number Diff line change 1
1
# seleniumbase package
2
- __version__ = "1.51.5 "
2
+ __version__ = "1.51.6 "
Original file line number Diff line number Diff line change 114
114
'six==1.15.0' ,
115
115
'nose==1.3.7' ,
116
116
'ipdb==0.13.4' ,
117
- 'parso==0.7.1' , # The last version for Python 2 and 3.5
118
- 'jedi==0.17.2' , # The last version for Python 2 and 3.5
117
+ 'parso==0.7.1;python_version<"3.6"' ,
118
+ 'parso==0.8.1;python_version>="3.6"' ,
119
+ 'jedi==0.17.2;python_version<"3.6"' ,
120
+ 'jedi==0.18.0;python_version>="3.6"' ,
119
121
'idna==2.10' , # Must stay in sync with "requests"
120
122
'chardet==3.0.4;python_version<"3.6"' , # Stay in sync with "requests"
121
123
'chardet==4.0.0;python_version>="3.6"' , # Stay in sync with "requests"
You can’t perform that action at this time.
0 commit comments