mirror of https://github.com/Textualize/rich.git
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:
parent
db7fc1a67f
commit
df76397390
File diff suppressed because it is too large
Load Diff
|
@ -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 }
|
||||||
|
|
Loading…
Reference in New Issue