瀏覽代碼

Attempt to fix install order

Adam Kelly 6 年之前
父節點
當前提交
098e66e71f
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      .travis.yml

+ 3 - 1
.travis.yml

@@ -13,7 +13,9 @@ git:
   depth: false
 
 install:
-  - pip install .
+    # There is sometimes issues with the install order so do this bad boi first
+  - pip install mako pybind11
+  - pip install -e .
 
 script:
   - "python setup.py test"