depenency fix

This commit is contained in:
Will McGugan 2024-10-01 14:31:42 +01:00
parent 36f3ca645d
commit 2e98b726ba
2 changed files with 9 additions and 2 deletions

View File

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [13.9.1] - 2024-10-01
### Fixed
- Fixed typing_extensions dependency
## [13.9.0] - 2024-10-01 ## [13.9.0] - 2024-10-01
### Changed ### Changed
@ -2084,6 +2090,7 @@ Major version bump for a breaking change to `Text.stylize signature`, which corr
- First official release, API still to be stabilized - First official release, API still to be stabilized
[13.9.1]: https://github.com/textualize/rich/compare/v13.9.0...v13.9.1
[13.9.0]: https://github.com/textualize/rich/compare/v13.8.1...v13.9.0 [13.9.0]: https://github.com/textualize/rich/compare/v13.8.1...v13.9.0
[13.8.1]: https://github.com/textualize/rich/compare/v13.8.0...v13.8.1 [13.8.1]: https://github.com/textualize/rich/compare/v13.8.0...v13.8.1
[13.8.0]: https://github.com/textualize/rich/compare/v13.7.1...v13.8.0 [13.8.0]: https://github.com/textualize/rich/compare/v13.7.1...v13.8.0

View File

@ -2,7 +2,7 @@
name = "rich" name = "rich"
homepage = "https://github.com/Textualize/rich" homepage = "https://github.com/Textualize/rich"
documentation = "https://rich.readthedocs.io/en/latest/" documentation = "https://rich.readthedocs.io/en/latest/"
version = "13.9.0" version = "13.9.1"
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
authors = ["Will McGugan <willmcgugan@gmail.com>"] authors = ["Will McGugan <willmcgugan@gmail.com>"]
license = "MIT" license = "MIT"
@ -29,7 +29,7 @@ include = ["rich/py.typed"]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8.0" python = ">=3.8.0"
typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.9" } typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.11" }
pygments = "^2.13.0" pygments = "^2.13.0"
ipywidgets = { version = ">=7.5.1,<9", optional = true } ipywidgets = { version = ">=7.5.1,<9", optional = true }
markdown-it-py = ">=2.2.0" markdown-it-py = ">=2.2.0"