Skip to content

Commit 5422bc0

Browse files
authored
Merge pull request #708 from seleniumbase/backport-fix-for-old-python
Backport a fix for older versions of Python
2 parents ba23f6d + 0a26c68 commit 5422bc0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,10 @@ ipython==5.10.0;python_version<"3.5"
5252
ipython==6.5.0;python_version>="3.5" and python_version<"3.6"
5353
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
5454
ipython==7.18.1;python_version>="3.7"
55+
colorama==0.4.3
56+
pathlib2>=2.3.5;python_version<"3.5"
5557
importlib-metadata==1.7.0
5658
virtualenv>=20.0.31
57-
colorama==0.4.3
5859
pymysql==0.10.1
5960
coverage==5.3
6061
brython==3.8.10

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
setup(
5656
name='seleniumbase',
57-
version='1.49.20',
57+
version='1.49.21',
5858
description='A complete framework for Web-UI testing | seleniumbase.io',
5959
long_description=long_description,
6060
long_description_content_type='text/markdown',
@@ -146,9 +146,10 @@
146146
'ipython==6.5.0;python_version>="3.5" and python_version<"3.6"',
147147
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
148148
'ipython==7.18.1;python_version>="3.7"',
149+
'colorama==0.4.3',
150+
'pathlib2>=2.3.5;python_version<"3.5"', # Sync with "virtualenv"
149151
'importlib-metadata==1.7.0', # Must stay in sync with "virtualenv"
150152
'virtualenv>=20.0.31', # Must stay in sync with "importlib-metadata"
151-
'colorama==0.4.3',
152153
'pymysql==0.10.1',
153154
'coverage==5.3',
154155
'brython==3.8.10',

0 commit comments

Comments
 (0)