-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💚 untap openssl and python2 from brew
- Loading branch information
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,14 @@ jobs: | |
submodules: true | ||
|
||
- name: Install dependencies | ||
run: brew update && brew upgrade && brew install boost gsl hdf5 cmake python | ||
run: | | ||
brew uninstall [email protected] | ||
brew uninstall [email protected] | ||
brew untap local/openssl | ||
brew untap local/python2 | ||
brew update | ||
brew upgrade | ||
brew install boost gsl hdf5 cmake python | ||
- name: Build and Install ecell4_base | ||
run: /usr/local/bin/python3 setup.py install | ||
|