Remove dataclasses as a dependency

Python 3.7 is now our minimum-supported Python, and so we don't need to pull
in dataclasses any more.

See #2566.
This commit is contained in:
Dave Pearson 2022-10-10 16:17:23 +01:00
parent db7fc1a67f
commit df76397390
No known key found for this signature in database
GPG Key ID: B413E0EF113D4ABF
2 changed files with 685 additions and 579 deletions

1263
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -28,7 +28,6 @@ include = ["rich/py.typed"]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.7.13" python = "^3.7.13"
typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.9" } typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.9" }
dataclasses = { version = ">=0.7,<0.9", python = "<3.7" }
pygments = "^2.6.0" pygments = "^2.6.0"
commonmark = "^0.9.0" commonmark = "^0.9.0"
ipywidgets = { version = "^7.5.1", optional = true } ipywidgets = { version = "^7.5.1", optional = true }