-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
67 lines (52 loc) · 1.5 KB
/
Makefile
File metadata and controls
67 lines (52 loc) · 1.5 KB
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
.PHONY: *
# Admin
dev:
pip install -e .
pip install -r requirements-dev.txt
ci:
pip install --progress-bar off -r requirements-dev.txt >> log_install.txt
python setup.py develop
lint:
pycodestyle torchml/ --max-line-length=160 --ignore=E501
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
format:
black .
make lint
make lint-examples
make lint-tests
# 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("mypackage/_version.py").read()[15:-2])')
sleep 3
git tag -a v$(shell python -c 'print(open("mypackage/_version.py").read()[15:-2])')
git push origin --tags
publish:
pip install -e . # Full build
rm -f mypackage/*.so # Remove .so files but leave .c files
rm -f mypackage/**/*.so
python setup.py sdist # Create package
twine upload --repository-url https://upload.pypi.org/legacy/ dist/* # Push to PyPI