Skip to content
This repository was archived by the owner on Dec 10, 2019. It is now read-only.

Commit 41f3b0d

Browse files
authored
Fix install for Mac OS (#9)
1 parent f5e490c commit 41f3b0d

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

scripts/update

+1-10
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,7 @@ pip install jupyter notebook
1414
jupyter nbextension enable --py --sys-prefix widgetsnbextension
1515
pip install -e git+https://github.com/azavea/ipyleaflet#egg=9cfd238
1616

17-
# MacOS has some sort of messy openSSL incompatibility
18-
# See https://github.com/pyca/cryptography/issues/3489
19-
if [ "$(uname -s)" == "Darwin" ]; then
20-
pip install cryptography \
21-
--global-option=build_ext \
22-
--global-option="-L/usr/local/opt/openssl/lib" \
23-
--global-option="-I/usr/local/opt/openssl/include"
24-
fi
25-
2617
jupyter nbextension install --py --symlink --sys-prefix ipyleaflet
2718
jupyter nbextension enable --py --sys-prefix ipyleaflet
2819

29-
python setup.py develop
20+
pip install -e .

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
],
2929
extras_require={
3030
'notebook': [
31-
'notebook == 4.0.0'
31+
'notebook >= 4.0.0'
3232
],
3333
'dev': [],
3434
'test': [],

0 commit comments

Comments
 (0)