Skip to content

Commit 5ba9cb5

Browse files
authored
Merge pull request #3513 from Textualize/typing-extensions-fix
depenency fix
2 parents 36f3ca6 + 2e98b72 commit 5ba9cb5

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [13.9.1] - 2024-10-01
9+
10+
### Fixed
11+
12+
- Fixed typing_extensions dependency
13+
814
## [13.9.0] - 2024-10-01
915

1016
### Changed
@@ -2084,6 +2090,7 @@ Major version bump for a breaking change to `Text.stylize signature`, which corr
20842090

20852091
- First official release, API still to be stabilized
20862092

2093+
[13.9.1]: https://github.com/textualize/rich/compare/v13.9.0...v13.9.1
20872094
[13.9.0]: https://github.com/textualize/rich/compare/v13.8.1...v13.9.0
20882095
[13.8.1]: https://github.com/textualize/rich/compare/v13.8.0...v13.8.1
20892096
[13.8.0]: https://github.com/textualize/rich/compare/v13.7.1...v13.8.0

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rich"
33
homepage = "https://github.com/Textualize/rich"
44
documentation = "https://rich.readthedocs.io/en/latest/"
5-
version = "13.9.0"
5+
version = "13.9.1"
66
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
77
authors = ["Will McGugan <willmcgugan@gmail.com>"]
88
license = "MIT"
@@ -29,7 +29,7 @@ include = ["rich/py.typed"]
2929

3030
[tool.poetry.dependencies]
3131
python = ">=3.8.0"
32-
typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.9" }
32+
typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.11" }
3333
pygments = "^2.13.0"
3434
ipywidgets = { version = ">=7.5.1,<9", optional = true }
3535
markdown-it-py = ">=2.2.0"

0 commit comments

Comments
 (0)