Skip to content

Commit

Permalink
Updates hard requirements on pyproject.tomls
Browse files Browse the repository at this point in the history
  • Loading branch information
staticdev committed Jan 5, 2022
1 parent 98673ff commit 0011fcf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 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"
6 changes: 3 additions & 3 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.3"
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"
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"
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ include = [
]

[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
python = ">=3.6.2"
pipreqs = {version = "*", optional = true}
requirementslib = {version = "*", optional = true}
pip-api = {version = "*", optional = true}
Expand Down Expand Up @@ -82,9 +82,9 @@ pip-shims = "^0.5.2"
smmap2 = "^3.0.1"
gitdb2 = "^4.0.2"
httpx = "^0.13.3"
example_shared_isort_profile = "^0.0.1"
example_isort_formatting_plugin = "^0.0.4"
example_isort_sorting_plugin = "^0.0.3"
example_shared_isort_profile = ">=0.0.2"
example_isort_formatting_plugin = ">=0.0.5"
example_isort_sorting_plugin = ">=0.0.4"
flake8 = "^3.8.4"
hypothesis = "^6.10.1"
libcst = "^0.3.18"
Expand Down

0 comments on commit 0011fcf

Please sign in to comment.