-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
57 lines (44 loc) · 1.36 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
.PHONY: *
# Admin
dev:
pip install --progress-bar off -r requirements.txt >> log_install.txt
python setup.py develop
lint:
pycodestyle metaschool/ --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
predocs:
cp ./README.md docs/index.md
cp ./CHANGELOG.md docs/changelog.md
docs: predocs
mkdocs serve
docs-deploy: predocs
mkdocs 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("metaschool/_version.py").read()[15:-2])')
sleep 3
git tag -a v$(shell python -c 'print(open("metaschool/_version.py").read()[15:-2])')
git push origin --tags
publish:
pip install -e . # Full build
rm -f metaschool/*.so # Remove .so files but leave .c files
rm -f metaschool/**/*.so
python setup.py sdist # Create package
twine upload --repository-url https://upload.pypi.org/legacy/ dist/* # Push to PyPI