Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates hard requirements on pyproject.tomls #1878

Merged
merged 2 commits into from Jan 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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