Skip to content

Commit 5e3947b

Browse files
committed
Backport fix for older versions of Python
1 parent ba23f6d commit 5e3947b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)