Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 68ee05e

Browse files
committed
As of pyparsing 2.0.0, Python 2 is no longer supported, so we need to set an upper limit for the range of versions installable by pip
1 parent 0c6f12a commit 68ee05e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ def get_install_requires(self):
939939
if sys.version_info[0] >= 3:
940940
return ['pyparsing>=2.0.0']
941941
else:
942-
return ['pyparsing>=1.5.6']
942+
return ['pyparsing>=1.5.6,<=1.5.7']
943943

944944

945945
class BackendAgg(OptionalBackendPackage):

0 commit comments

Comments
 (0)