diff --git a/corrscope/__init__.py b/corrscope/__init__.py index be558fc..1b7552e 100644 --- a/corrscope/__init__.py +++ b/corrscope/__init__.py @@ -1,2 +1,2 @@ # https://github.com/sdispater/poetry/issues/144 -__version__ = "0.1.1-pre" +__version__ = "0.1.1" diff --git a/pyproject.toml b/pyproject.toml index f4bac7b..cae0342 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "corrscope" -version = "0.1.1-pre" +version = "0.1.1" description = "" authors = ["nyanpasu64 "] license = "BSD-2-Clause" @@ -26,12 +26,12 @@ pywin32-ctypes = {version = "^0.2.0",platform = "win32"} [tool.poetry.scripts] corr = 'corrscope.cli:main' +[tool.black] +line-length = 88 +py36 = true +exclude = 'utils/scipy_' [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api" -[tool.black] -line-length = 88 -py36 = true -exclude = 'utils/scipy_'