Skip to content

Commit dffeb78

Browse files
committed
fix travis-osx
Squashed commit of the following: commit bc4ba0b Author: Erik Hemming <eriquesnk@gmail.com> Date: Fri Mar 20 17:35:00 2020 +0100 update to xcode11.3 commit 6d56838 Author: Erik Hemming <eriquesnk@gmail.com> Date: Fri Mar 20 17:23:57 2020 +0100 fix travis on osx (7zip)
1 parent d0c0e1c commit dffeb78

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ addons:
88
apt:
99
packages:
1010
- p7zip-full
11-
homebrew:
12-
packages:
13-
- p7zip
11+
# osx handles this in 'before_install'
1412
# windows/choco comes with 7zip.install 18.5.0.20180730
1513

1614
# python is painful ..
@@ -25,7 +23,7 @@ jobs:
2523
- source venv/bin/activate
2624
- name: "macOS"
2725
os: osx
28-
osx_image: xcode11.2
26+
osx_image: xcode11.3
2927
# - name: "Windows"
3028
# os: windows
3129
# before_install:
@@ -36,6 +34,9 @@ jobs:
3634
# - python -m pip install --upgrade pip
3735
# env: PATH=/c/tools/python-x86_32:/c/tools/python-x86_32/Scripts:$PATH
3836

37+
before_install:
38+
if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install p7zip ; fi
39+
3940
install:
4041
- python --version
4142
- pip --version

0 commit comments

Comments
 (0)