Skip to content

Commit bed95d3

Browse files
committed
force sh to be < 1.12.5, as we have performance issues
1 parent de3d353 commit bed95d3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
install_reqs = ['appdirs', 'colorama>=0.3.3', 'jinja2',
2020
'six']
2121
else:
22-
install_reqs = ['appdirs', 'colorama>=0.3.3', 'sh>=1.10', 'jinja2',
22+
# don't use sh after 1.12.5, we have performance issues
23+
# https://github.com/amoffat/sh/issues/378
24+
install_reqs = ['appdirs', 'colorama>=0.3.3', 'sh>=1.10,<1.12.5', 'jinja2',
2325
'six']
2426

2527
# By specifying every file manually, package_data will be able to

0 commit comments

Comments
 (0)