From d4f3b08679ef6ceac46c9a756f4ad21213dd5157 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Sun, 15 Dec 2019 14:54:57 +0300 Subject: [PATCH] Version 0.13.3 release --- .travis.yml | 3 +++ CHANGELOG.md | 1 + CONTRIBUTING.md | 1 - Makefile | 1 - pyproject.toml | 4 ++-- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f732f899c..61427a623 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,9 @@ python: - 3.6 - 3.7 +env: + - POETRY_VERSION=1.0.0 + before_install: - pip freeze | xargs pip uninstall -y - curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python diff --git a/CHANGELOG.md b/CHANGELOG.md index 64e1ab045..1da255cdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ We used to have incremental versioning before `0.1.0`. ### Misc - Updates `radon` version +- Updates `poetry` version to `1.0` ## 0.13.2 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 39e1437a7..fd286ebd9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -144,7 +144,6 @@ Before submitting your code please do the following steps: 9. Run `flake8` to ensure that style is correct 10. Run `lint-imports` to ensure that architecture contracts are correct 11. Run `doc8` to ensure that docs are correct -12. Run `xenon` to ensure that code quality is `A` (good enough) You can run everything at once with `make test`, see our `Makefile` for more details. diff --git a/Makefile b/Makefile index 3205f2dbe..ba25b0a4b 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,6 @@ lint: mypy wemake_python_styleguide flake8 . autopep8 -r . --diff --exclude=./tests/fixtures/** --exit-code - xenon --max-absolute B --max-modules A --max-average A wemake_python_styleguide lint-imports poetry run doc8 -q docs diff --git a/pyproject.toml b/pyproject.toml index c31b33b22..a41d9637f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["poetry>=0.12"] +requires = ["poetry>=1.0"] build-backend = "poetry.masonry.api" @@ -9,7 +9,7 @@ style = "styles/nitpick-style-wemake.toml" [tool.poetry] name = "wemake-python-styleguide" -version = "0.13.2" +version = "0.13.3" description = "The strictest and most opinionated python linter ever" license = "MIT"