Skip to content

Commit

Permalink
Merge pull request #1878 from staticdev/bug/fix-python-requires-cap-40
Browse files Browse the repository at this point in the history
Updates hard requirements on pyproject.tomls
  • Loading branch information
timothycrosley committed Jan 7, 2022
2 parents 98673ff + 56aab5f commit c6a4196
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 29 deletions.
6 changes: 3 additions & 3 deletions example_isort_formatting_plugin/pyproject.toml
@@ -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
@@ -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
@@ -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"
40 changes: 22 additions & 18 deletions poetry.lock

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

3 changes: 1 addition & 2 deletions pyproject.toml
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 @@ -83,7 +83,6 @@ 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"
flake8 = "^3.8.4"
hypothesis = "^6.10.1"
Expand Down

0 comments on commit c6a4196

Please sign in to comment.