Skip to content

Commit f7272a9

Browse files
authored
Merge pull request #279 from seleniumbase/fix-python-2-compatibility
Fix python 2 compatibility
2 parents a34e563 + a9e7eee commit f7272a9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ beautifulsoup4>=4.6.0
1818
colorama==0.4.1
1919
pyotp>=2.2.7
2020
boto>=2.49.0
21+
more-itertools>=5.0.0,<6.0.0
2122
flake8==3.7.5
2223
PyVirtualDisplay==0.2.1
2324
-e .

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='seleniumbase',
20-
version='1.19.4',
20+
version='1.19.5',
2121
description='Reliable Browser Automation & Testing Framework',
2222
long_description=long_description,
2323
long_description_content_type='text/markdown',
@@ -71,6 +71,7 @@
7171
'colorama==0.4.1',
7272
'pyotp>=2.2.7',
7373
'boto>=2.49.0',
74+
'more-itertools>=5.0.0,<6.0.0', # Keep this for Python 2 compatibility
7475
'flake8>=3.6.0,<3.8.0',
7576
'PyVirtualDisplay==0.2.1',
7677
],

0 commit comments

Comments
 (0)