Skip to content

Commit f8f993b

Browse files
committed
Merge branch 'release/0.8.0'
2 parents d721bff + 35d3ca4 commit f8f993b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+13745
-2146
lines changed

.pylintrc

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
[MASTER]
22

3-
max-line-length = 128
4-
53
disable =
4+
arguments-differ,
65
bad-continuation,
76
duplicate-code,
8-
missing-docstring,
7+
logging-fstring-interpolation,
8+
too-few-public-methods,
9+
too-many-ancestors,
10+
too-many-branches,
11+
too-many-instance-attributes,
12+
too-many-locals,
13+
too-many-nested-blocks,
14+
too-many-statements,
15+
16+
[FORMAT]
17+
18+
max-line-length = 128
19+
good-names = ws

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ TWINE = twine
77

88
all: dist check test
99

10-
dist: sdist
10+
dist: sdist bdist_wheel
1111

12-
sdist:
12+
sdist bdist_wheel:
1313
$(PY) setup.py $@
1414

1515
check:
@@ -29,7 +29,7 @@ doc:
2929

3030
upload: dist check
3131
ls dist/*.tar.gz
32-
$(TWINE) upload --repository-url https://test.pypi.org/legacy/ dist/*.tar.gz --verbose
32+
$(TWINE) upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose
3333

3434
clean:
3535
( cd docs ; make clean )

0 commit comments

Comments
 (0)