Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 33e1c4c

Browse files
committed
pyproject: Fix for Python 3.10
Here's what the poetry solver has to say: --- The current project's Python requirement (3.10.0rc1) is not compatible with some of the required packages Python requirement: - dataclasses requires Python >=3.6, <3.7, so it will not be - satisfied for Python 3.10.0rc1 Because dataclasses (0.8) requires Python >=3.6, <3.7 and no versions of dataclasses match >=0.6,<0.8 || >0.8, dataclasses is forbidden. So, because cli-ui depends on black (21.6b0) which depends on dataclasses (>=0.6), version solving failed. ---
1 parent 6fac71b commit 33e1c4c

2 files changed

Lines changed: 24 additions & 25 deletions

File tree

poetry.lock

Lines changed: 23 additions & 24 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
@@ -32,7 +32,7 @@ pytest = "^6.2.1"
3232
pytest-cov = "^2.10"
3333

3434
# Linters
35-
black = { version = "21.6b0", python = ">=3.6.2" }
35+
black = { version = "21.7b0", python = ">=3.7" }
3636
flake8 = "3.9.2"
3737
flake8-bugbear = "^21.4.3"
3838
flake8-comprehensions = "^3.4.0"

0 commit comments

Comments
 (0)