Skip to content

Commit 0028cc3

Browse files
authored
Relax black version constraints (#146)
This change ensures that the wheel built only requests for the minimum version of black it requires to function as intended. Without this change any project that uses betterproto[compiler] would break while resolving dependencies.
1 parent 034e2e7 commit 0028cc3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

poetry.lock

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ packages = [
1414
[tool.poetry.dependencies]
1515
python = "^3.6"
1616
backports-datetime-fromisoformat = { version = "^1.0.0", python = "<3.7" }
17-
black = { version = "^20.8b1", optional = true }
17+
black = { version = ">=19.3b0", optional = true }
1818
dataclasses = { version = "^0.7", python = ">=3.6, <3.7" }
1919
grpclib = "^0.3.1"
2020
jinja2 = { version = "^2.11.2", optional = true }

0 commit comments

Comments
 (0)