Skip to content
This repository has been archived by the owner on Dec 3, 2022. It is now read-only.

Commit

Permalink
Merge 8e11b6b into c598242
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilo59 committed Jan 26, 2020
2 parents c598242 + 8e11b6b commit b8bf93e
Show file tree
Hide file tree
Showing 6 changed files with 292 additions and 194 deletions.
3 changes: 2 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ verify_ssl = true
name = "pypi"

[packages]
black = "==19.3b0"
black = "==19.10b0"
invoke = "*"
prospector = {extras = ["with_pyroma"],version = "*"}

[dev-packages]
flit = "*"
pytest = "*"
pytest-cov = "*"
coveralls = "*"
bumpversion = "*"

[requires]
Expand Down
474 changes: 283 additions & 191 deletions Pipfile.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion blue_chip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
blue_chip
~~~~~~~~~
"""
__version__ = "0.0.2"
__version__ = "0.0.3"
__all__ = ["__main__", "constants", "tasks", "config"]
5 changes: 4 additions & 1 deletion blue_chip/config/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
disable:
# covered by pep8
- line-too-long
- logging-fstring-interpolation
# black conflict
- bad-continuation
options:
logging-format-style: "fstr"
pep8:
options:
Expand All @@ -20,6 +21,8 @@
pep257:
disable:
- D400
# First line rules conflict with sphinx requirements.
- D415
# blank line required between summary line and description
- D205
# Multi-line docstring summary should start at the first line
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Development Status :: 2 - Pre-Alpha",]

Expand Down
1 change: 1 addition & 0 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ def clean(ctx, docs=False, bytecode=False, lintrc=False, extra=""):
if extra:
patterns.append(extra)
for pattern in patterns:
print(f"cleaning {pattern}...")
ctx.run(f"rm -rf {pattern}")

0 comments on commit b8bf93e

Please sign in to comment.