From 0b0e29e394e136e5a99698698e0dd1230f5bcf64 Mon Sep 17 00:00:00 2001 From: Sigurd Spieckermann Date: Fri, 26 Aug 2022 20:35:49 +0200 Subject: [PATCH 1/3] chore: remove Black's default line length setting --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ecb418b49..2592a5bac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -103,7 +103,6 @@ style = "pep440" vcs = "git" [tool.black] -line-length = 88 target-version = ['py36'] [tool.isort] From 23ccb91235fa8616434a0197a4284a8749429294 Mon Sep 17 00:00:00 2001 From: Sigurd Spieckermann Date: Fri, 26 Aug 2022 19:51:29 +0200 Subject: [PATCH 2/3] build(deps): remove upper bound from Python version specifier --- poetry.lock | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index b84058d6a..ca1547929 100644 --- a/poetry.lock +++ b/poetry.lock @@ -925,8 +925,8 @@ docs = ["mkdocs-material", "mkdocstrings"] [metadata] lock-version = "1.1" -python-versions = ">=3.7,<4.0" -content-hash = "ec19cf2f5d71ca219961048304c9ae8a583da06f3c0b77c3652ef4c8a5c54773" +python-versions = ">=3.7" +content-hash = "15052b3a0682e222bc9190f03e4a4252282e1be88c5f1545a4d7843c35d6d5a0" [metadata.files] atomicwrites = [ diff --git a/pyproject.toml b/pyproject.toml index 2592a5bac..cd2ba59fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ copier = "copier.cli:CopierApp.run" "Bug Tracker" = "https://github.com/copier-org/copier/issues" [tool.poetry.dependencies] -python = ">=3.7,<4.0" +python = ">=3.7" "backports.cached-property" = { version = ">=1.0.0", python = "<3.8" } colorama = ">=0.4.3" dunamai = ">=1.7.0" From 1d6fb24ebef7d6118c8cdd40e1d11bb11d9386f0 Mon Sep 17 00:00:00 2001 From: Sigurd Spieckermann Date: Fri, 26 Aug 2022 20:22:51 +0200 Subject: [PATCH 3/3] chore: use isort profile "black" and remove default settings --- pyproject.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cd2ba59fa..b126593c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -106,14 +106,9 @@ vcs = "git" target-version = ['py36'] [tool.isort] +profile = "black" combine_as_imports = true -default_section = "THIRDPARTY" -force_grid_wrap = 0 -include_trailing_comma = true known_first_party = ["copier"] -line_length = 88 -multi_line_output = 3 # black interop -use_parentheses = true [tool.mypy] ignore_missing_imports = true