Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ matrix:
name: Build documentation
install: false
script: make travis-upload-docs
- # The OS X VM doesn't have any Python support at all
# See https://github.com/travis-ci/travis-ci/issues/2312
os: osx
name: OS X Python 2.7
language: generic
before_install:
- brew install python@2
- python2 -m pip install --user virtualenv
- /Users/travis/Library/Python/2.7/bin/virtualenv $HOME/osx-py
- source $HOME/osx-py/bin/activate
- export TRAVIS_PYTHON_VERSION=2.7


install:
- pip install tox
Expand Down
2 changes: 1 addition & 1 deletion scripts/download-semaphore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ output="$(
echo "$output"

output="$(echo "$output" \
| grep "Linux" \
| grep "$(uname -s)" \
| grep "download" \
| cut -d : -f 2,3 \
| tr -d , \
Expand Down