Dont add openssl to the brewfile
We only need to install it on CI because the python on CI doesnt come from brew. Normal brewfile based installation will install openssl as a dependency of python
This commit is contained in:
parent
241c7af855
commit
d4168e3b80
2
.github/workflows/ci.py
vendored
2
.github/workflows/ci.py
vendored
@ -31,7 +31,7 @@ def install_deps():
|
||||
sys.stdout.flush()
|
||||
if is_macos:
|
||||
items = (x.split()[1].strip('"') for x in open('Brewfile').readlines() if x.strip().startswith('brew '))
|
||||
run('brew', 'install', 'fish', *items)
|
||||
run('brew', 'install', 'fish', 'openssl', *items)
|
||||
else:
|
||||
run('sudo apt-get update')
|
||||
run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev ca-certificates'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user