diff --git a/Dockerfile b/Dockerfile index f474e8e..8765647 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ RUN apt-get update && apt-get install -y -q \ npm # In order to build from source, need less -RUN npm install -g less +RUN npm install -g less@1.7.5 RUN pip install invoke diff --git a/IPython/html/tasks.py b/IPython/html/tasks.py index aae32ef..338bfd3 100644 --- a/IPython/html/tasks.py +++ b/IPython/html/tasks.py @@ -67,9 +67,9 @@ def _compile_less(source, target, sourcemap, minify=True, verbose=False): out = out.decode('utf8', 'replace') less_version = out.split()[1] if V(less_version) < V(min_less_version): - raise ValueError("lessc too old: %s < %s. Use `$ npm install lesscss@X.Y.Z` to install a specific version of less" % (less_version, min_less_version)) + raise ValueError("lessc too old: %s < %s. Use `$ npm install less@X.Y.Z` to install a specific version of less" % (less_version, min_less_version)) if V(less_version) >= V(max_less_version): - raise ValueError("lessc too new: %s >= %s. Use `$ npm install lesscss@X.Y.Z` to install a specific version of less" % (less_version, max_less_version)) + raise ValueError("lessc too new: %s >= %s. Use `$ npm install less@X.Y.Z` to install a specific version of less" % (less_version, max_less_version)) static_path = pjoin(here, static_dir) cwd = os.getcwd()