Skip to content

Commit bd8eceb

Browse files
authored
Merge pull request #765 from seleniumbase/update-dependencies
Update Python dependencies: "parso" and "jedi"
2 parents 356d417 + 0914626 commit bd8eceb

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ certifi>=2020.12.5
1010
six==1.15.0
1111
nose==1.3.7
1212
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"
1517
idna==2.10
1618
chardet==3.0.4;python_version<"3.6"
1719
chardet==4.0.0;python_version>="3.6"

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.51.5"
2+
__version__ = "1.51.6"

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,10 @@
114114
'six==1.15.0',
115115
'nose==1.3.7',
116116
'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"',
119121
'idna==2.10', # Must stay in sync with "requests"
120122
'chardet==3.0.4;python_version<"3.6"', # Stay in sync with "requests"
121123
'chardet==4.0.0;python_version>="3.6"', # Stay in sync with "requests"

0 commit comments

Comments
 (0)