forked from jmcnamara/XlsxWriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
92 lines (75 loc) · 2.63 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#
# Simple Makefile for the XlsxWriter project.
#
.PHONY: docs
docs doc:
@make -C dev/docs html
pdf:
@make -C dev/docs latexpdf
linkcheck:
@make -C dev/docs linkcheck
clean:
@make -C dev/docs clean
alldocs: clean docs pdf
@cp -r dev/docs/build/html docs
@cp -r dev/docs/build/latex/XlsxWriter.pdf docs
pdf_release: pdf
@cp -r dev/docs/build/latex/XlsxWriter.pdf docs
install:
@python setup.py install
@rm -rf build
test:
@python -m unittest discover
# Test with stable Python 2/3 releases.
testpythons:
@echo "Testing with Python 2.7.4:"
@~/.pythonbrew/pythons/Python-2.7.4/bin/python -m unittest discover
@echo "Testing with Python 3.4.1:"
@~/.pythonbrew/pythons/Python-3.4.1/bin/python -m unittest discover
# Test with all stable Python 2/3 releases.
testpythonsall:
@echo "Testing with Python 2.5.6:"
@~/.pythonbrew/pythons/Python-2.5.6/bin/py.test -q
@echo "Testing with Python 2.6.8:"
@~/.pythonbrew/pythons/Python-2.6.8/bin/py.test -q
@echo "Testing with Python 2.7.4:"
@~/.pythonbrew/pythons/Python-2.7.4/bin/py.test -q
@echo "Testing with Python 3.1.5:"
@~/.pythonbrew/pythons/Python-3.1.5/bin/py.test -q
@echo "Testing with Python 3.2.5:"
@~/.pythonbrew/pythons/Python-3.2.5/bin/py.test -q
@echo "Testing with Python 3.3.2:"
@~/.pythonbrew/pythons/Python-3.3.2/bin/py.test -q
@echo "Testing with Python 3.4.1:"
@~/.pythonbrew/pythons/Python-3.4.1/bin/py.test -q
@echo "Testing with Python 3.5.0:"
@~/.pythonbrew/pythons/Python-3.5.0/bin/py.test -q
@echo "Testing with Python 3.6.6:"
@~/.pythonbrew/pythons/Python-3.6.6/bin/py.test -q
@echo "Testing with Python 3.7.0:"
@~/.pythonbrew/pythons/Python-3.7.0/bin/py.test -q
test_codestyle testpep8:
@ls -1 xlsxwriter/*.py | egrep -v "theme|compat|__init__" | xargs pycodestyle
@pycodestyle --ignore=E501 xlsxwriter/theme.py
@find xlsxwriter/test -name \*.py | xargs pycodestyle --ignore=E501
testwarnings:
@find . -name '*.py[co]' -exec rm -rf '{}' +
@PYTHONPATH=$PYTHONPATH:. ~/.pythonbrew/pythons/Python-3.7.0/bin/python -Walways examples/hello_world.py
@rm -f hello_world.xlsx
spellcheck:
@for f in dev/docs/source/*.rst; do aspell --lang=en_US --check $$f; done
@for f in *.md; do aspell --lang=en_US --check $$f; done
@for f in xlsxwriter/*.py; do aspell --lang=en_US --check $$f; done
@for f in examples/*.py; do aspell --lang=en_US --check $$f; done
@aspell --lang=en_US --check Changes
releasecheck:
@dev/release/release_check.sh
release: releasecheck
@git push origin master
@git push --tags
@python setup.py sdist bdist_wheel
@twine upload dist/*
@../build_readthedocs.sh
@rm -rf dist
@rm -rf build
@rm -rf XlsxWriter.egg-info/