Skip to content

Commit

Permalink
Merge branch 'release/0.8.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
emfomy committed Apr 27, 2020
2 parents d721bff + 35d3ca4 commit f8f993b
Show file tree
Hide file tree
Showing 71 changed files with 13,745 additions and 2,146 deletions.
17 changes: 14 additions & 3 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
[MASTER]

max-line-length = 128

disable =
arguments-differ,
bad-continuation,
duplicate-code,
missing-docstring,
logging-fstring-interpolation,
too-few-public-methods,
too-many-ancestors,
too-many-branches,
too-many-instance-attributes,
too-many-locals,
too-many-nested-blocks,
too-many-statements,

[FORMAT]

max-line-length = 128
good-names = ws
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ TWINE = twine

all: dist check test

dist: sdist
dist: sdist bdist_wheel

sdist:
sdist bdist_wheel:
$(PY) setup.py $@

check:
Expand All @@ -29,7 +29,7 @@ doc:

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

clean:
( cd docs ; make clean )
Expand Down

0 comments on commit f8f993b

Please sign in to comment.