Skip to content

Commit

Permalink
Version 0.12 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Aug 14, 2019
1 parent 1683d2e commit c38647e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
13 changes: 7 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ style = "styles/nitpick-style-wemake.toml"

[tool.poetry]
name = "wemake-python-styleguide"
version = "0.11.1"
version = "0.12.0"
description = "The strictest and most opinionated python linter ever"

license = "MIT"
Expand Down Expand Up @@ -63,6 +63,7 @@ flake8-commas = "^2.0"
flake8-quotes = "^2.0.1"
flake8-comprehensions = "^2.1"
flake8-docstrings = "^1.3.1"
pydocstyle = "<4.0"
flake8-string-format = "^0.2"
flake8-coding = "^1.3"
flake8-bugbear = "^19.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def test_falsy_constant_not_eq(
('some', '1'),
('some', '""'),
('some', '"a"'),
('some', 'b"bytes"'),
('some', 'other'),
('some', 'other()'),
('some', 'other.attr'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
('some', '-0.1'),
('some', '""'),
('some', '"abc"'),
('some', 'b"bytes"'),

('some', '(1, 2)'),
('[]', 'some'),
Expand Down

0 comments on commit c38647e

Please sign in to comment.