-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMakefile
24 lines (24 loc) · 823 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
compile:
pip-compile setup.py
compile-dev:
pip-compile requirements-dev.in
compile-plugins:
pip-compile requirements-plugins.in
compile-all:
pip-compile setup.py
pip-compile requirements-dev.in
pip-compile requirements-plugins.in
sync:
pip-sync requirements.txt requirements-dev.txt requirements-plugins.txt
sync-fix-m1:
arch -arm64 pip-sync requirements.txt requirements-dev.txt requirements-plugins.txt --pip-args "--no-cache-dir --force-reinstall"
latest-nbdev:
pip install git+https://github.com/fastai/nbdev.git --upgrade
exec-guides:
for f in `find nbs/guide -name '*.ipynb' -not -name '*checkpoint*'`; do \
echo $$f && exec_nb $$f --dest $$f; \
done
exec-modules:
for f in `find nbs -name '*.ipynb' -not -name '*checkpoint*' -not -path 'nbs/guide*'`; do \
echo $$f && exec_nb $$f --dest $$f; \
done