FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
plotly.py/makefile at master · JavaJourneyman/plotly.py · GitHub
JavaJourneyman
/
plotly.py
Public
forked from
plotly/plotly.py
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
plotly.py
/
makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
59 lines (49 loc) · 1.67 KB
Breadcrumbs
plotly.py
/
makefile
Copy path
File metadata and controls
59 lines (49 loc) · 1.67 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
all
: readme
readme
:
@echo
"
"
@less make_instructions.txt
setup_subs
:
@echo
"
Deleting old submodule locations, if they exist
"
rm -rf plotly/mplexporter
rm -rf plotly/chunked_requests
rm -rf plotly/plotly/chunked_requests
rm -rf plotly/matplotlylib/mplexporter
@echo
"
Initializing submodules listed in project
"
git submodule init
@echo
"
Updating submodules to their respective commits
"
git submodule update
make sync_subs
update_default_schema
:
@echo
"
Making sure the default-schema.json file is up to date
"
python -c
"
import json;
\
from plotly.graph_reference import GRAPH_REFERENCE;\
f
= open('plotly/graph_reference/default-schema.json', 'w');
\
json.dump(GRAPH_REFERENCE, f, indent=4, sort_keys=True,
\
separators=(',', ': '));
\
f.close()"
install
: sync_subs
@echo
"
"
@echo
"
Installing Python API with make
"
python setup.py install
sync_subs
: sync_mpl sync_chunked
@echo
"
"
@echo
"
Submodules synced
"
pull_subs
: pull_mpl pull_chunked
@echo
"
"
@echo
"
Submodules pulled
"
sync_mpl
: submodules/mplexporter
@echo
"
"
@echo
"
Syncing mplexporter directories
"
rsync -r submodules/mplexporter/mplexporter plotly/matplotlylib/
sync_chunked
: submodules/chunked_requests
@echo
"
"
@echo
"
Syncing chunked_requests directories
"
rsync -r submodules/chunked_requests/chunked_requests plotly/plotly/
pull_mpl
: submodules/mplexporter
@echo
"
"
@echo
"
Pulling down updates from mplexporter
"
cd
submodules/mplexporter
;
git pull origin master
pull_chunked
: submodules/chunked_requests
@echo
"
"
@echo
"
Pulling down updates from chunked_requests
"
cd
submodules/chunked_requests
;
git pull origin master
Back
|
FazBrowse Home
|
New Git URL