Skip to content

Commit

Permalink
Tolerate more Python versions in link overwrite
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnovak authored Oct 28, 2020
1 parent d41f866 commit df6cea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ before_install:
# inability to link it as an error and fail the command. You can --force a link step, but
# I don't see a way to tell it to not replace things that exist and also not fail.
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew bundle --verbose || true; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew link --overwrite python@3.8; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew link --overwrite python@3.9 || brew link --overwrite python@3.8 || true; fi
# Try installing gcc6 twice in case of errors like this:
# Error: HOMEBREW_LOGS was not exported!
# Please don't worry, you likely hit a bug auto-updating from an old version.
Expand Down

1 comment on commit df6cea6

@adamnovak
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch dict-support. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 14340 seconds

Please sign in to comment.