forked from learnables/learn2learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
69 lines (55 loc) · 1.68 KB
/
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
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
60
61
62
63
64
65
66
67
68
69
.PHONY: *
build:
rm -f learn2learn/**/*.so
rm -f learn2learn/**/*.c
python setup.py build_ext --inplace
clean:
rm -rf dist/ build/
rm -f learn2learn/**/*.c
rm -f learn2learn/**/*.so
rm -f learn2learn/**/*.html
rm -f learn2learn.egg-info/**/*.html
# Admin
dev:
pip install --progress-bar off torch gym pycodestyle >> log_install.txt
python setup.py develop
lint:
pycodestyle learn2learn/ --max-line-length=160
lint-examples:
pycodestyle examples/ --max-line-length=80
lint-tests:
pycodestyle tests/ --max-line-length=180
tests:
OMP_NUM_THREADS=1 \
MKL_NUM_THREADS=1 \
python -W ignore -m unittest discover -s 'tests' -p '*_test.py' -v
make lint
notravis-tests:
OMP_NUM_THREADS=1 \
MKL_NUM_THREADS=1 \
python -W ignore -m unittest discover -s 'tests' -p '*_test_notravis.py' -v
alltests:
rm -f alltests.txt
make tests >>alltests.txt 2>&1
make notravis-tests >>alltests.txt 2>&1
docs:
rm -f docs/mkdocs.yml
#python scripts/compile_paper_list.py
cd docs && pydocmd build && pydocmd serve
docs-deploy:
rm -f docs/mkdocs.yml
python scripts/compile_paper_list.py
cd docs && pydocmd gh-deploy
# https://dev.to/neshaz/a-tutorial-for-tagging-releases-in-git-147e
release:
echo 'Do not forget to bump the CHANGELOG.md'
echo 'Tagging v'$(shell python -c 'print(open("learn2learn/_version.py").read()[15:-2])')
sleep 3
git tag -a v$(shell python -c 'print(open("learn2learn/_version.py").read()[15:-2])')
git push origin --tags
publish:
pip install -e . # Full build
rm -f learn2learn/*.so # Remove .so files but leave .c files
rm -f learn2learn/**/*.so
python setup.py sdist # Create package
twine upload --repository-url https://upload.pypi.org/legacy/ dist/* # Push to PyPI