Skip to content

Commit

Permalink
Merge branch 'PyCQA:main' into trailing_comma
Browse files Browse the repository at this point in the history
  • Loading branch information
legau committed Mar 12, 2022
2 parents 8cde8b2 + c6a4196 commit 58685a4
Show file tree
Hide file tree
Showing 6 changed files with 195 additions and 273 deletions.
6 changes: 3 additions & 3 deletions example_isort_formatting_plugin/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "example_isort_formatting_plugin"
version = "0.0.4"
version = "0.0.5"
description = "An example plugin that modifies isort formatting using black."
authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
license = "MIT"
Expand All @@ -9,12 +9,12 @@ license = "MIT"
example = "example_isort_formatting_plugin:black_format_import_section"

[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
python = ">=3.6.2"
isort = "^5.1.4"
black = ">20.08b1"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry>=0.12"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.masonry.api"
10 changes: 5 additions & 5 deletions example_isort_sorting_plugin/poetry.lock

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

8 changes: 4 additions & 4 deletions example_isort_sorting_plugin/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "example_isort_sorting_plugin"
version = "0.0.2"
version = "0.0.4"
description = "An example plugin that modifies isorts sorting order to provide an even more natural sort by utilizing natsort."
authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
license = "MIT"
Expand All @@ -9,11 +9,11 @@ license = "MIT"
natural_plus = "example_isort_sorting_plugin:natural_plus"

[tool.poetry.dependencies]
python = "^3.6"
natsort = "^7.1.1"
python = ">=3.6"
natsort = ">=7.1.1"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry>=0.12"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.masonry.api"
6 changes: 3 additions & 3 deletions example_shared_isort_profile/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "example_shared_isort_profile"
version = "0.0.1"
version = "0.0.2"
description = "An example shared isort profile"
authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
license = "MIT"
Expand All @@ -9,10 +9,10 @@ license = "MIT"
example = "example_shared_isort_profile:PROFILE"

[tool.poetry.dependencies]
python = "^3.6"
python = ">=3.6"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry>=0.12"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.masonry.api"

0 comments on commit 58685a4

Please sign in to comment.