Skip to content

Commit 3e04ac3

Browse files
authored
Merge pull request #6163 from Tom-Newton/tomnewton/avoid_circular_dependency
Avoid circular dependency
2 parents b801c15 + acbc319 commit 3e04ac3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111

1212
- Fixed type hint aliasing for App under TYPE_CHECKING https://github.com/Textualize/textual/pull/6152
13+
- Fixed circular dependency effecting `bazel` users https://github.com/Textualize/textual/pull/6163
1314
- Fixed for text selection with double width characters https://github.com/Textualize/textual/pull/6186
1415

1516
### Changed

poetry.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Modern Text User Interface framework"
99
authors = ["Will McGugan <[email protected]>"]
1010
license = "MIT"
1111
readme = "README.md"
12-
classifiers = [
12+
classifiers = [
1313
"Development Status :: 5 - Production/Stable",
1414
"Environment :: Console",
1515
"Intended Audience :: Developers",
@@ -45,7 +45,8 @@ target-version = "py39"
4545

4646
[tool.poetry.dependencies]
4747
python = "^3.9"
48-
markdown-it-py = { extras = ["plugins", "linkify"], version = ">=2.1.0" }
48+
markdown-it-py = { extras = ["linkify"], version = ">=2.1.0" }
49+
mdit-py-plugins = "*"
4950
rich = ">=14.2.0"
5051
#rich = {path="../rich", develop=true}
5152
typing-extensions = "^4.4.0"

0 commit comments

Comments
 (0)