Commit 91a8698c90380c025550c63fcae43c2228e7e4c3

Authored by Henry Fredrick Schreiner
1 parent 14f1c9b8

Fixing Travis builds

.travis.yml
... ... @@ -52,7 +52,7 @@ matrix:
52 52 - COMPILER=4.7
53 53 - os: osx
54 54 before_install:
55   - - python -m ensurepip
  55 + - python -m ensurepip --default-pip
56 56 install:
57 57 - python -c 'import sys; print(sys.version_info[:])'
58 58 - DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
... ... @@ -61,7 +61,7 @@ install:
61 61 - if [ "$TRAVIS_OS_NAME" = "linux" ] ; then cd $TRAVIS_BUILD_DIR && . .ci/build_doxygen.sh ; fi
62 62 - if [ -n "$COVERALLS" ] ; then cd $TRAVIS_BUILD_DIR && . .ci/build_lcov.sh ; fi
63 63 - cd "${DEPS_DIR}"
64   -- if [ "$(python -c 'import sys; print(sys.version_info[0])')" = "2" ] ; then pip install --user pathlib ; fi
  64 +- if [ "$(python -c 'import sys; print(sys.version_info[0])')" = "2" ] ; then python -m pip install --user pathlib ; fi
65 65 - cmake --version
66 66 script:
67 67 - cd "${TRAVIS_BUILD_DIR}"
... ...
include/CLI/App.hpp
... ... @@ -361,7 +361,7 @@ class App {
361 361 help_ptr_ = add_flag(name, description);
362 362 help_ptr_->configurable(false);
363 363 }
364   -
  364 +
365 365 return help_ptr_;
366 366 }
367 367  
... ...