Skip to content

Commit

Permalink
⬆ Upgrade Rich, support 13.x (fastapi#524)
Browse files Browse the repository at this point in the history
Allow rich 13.x

Based on the changelog, the only relevant breaking change is that
support for Python 3.6 is removed:

https://github.com/Textualize/rich/blob/v13.0.0/CHANGELOG.md#1300---2022-12-30

This is OK even though we support Python 3.6 in typer, because we do
still allow older versions of rich that are compatible with Python 3.6.
  • Loading branch information
musicinmybrain authored May 1, 2023
1 parent a6a5787 commit 6664f1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ test = [
"mypy ==0.910",
"black >=22.3.0,<23.0.0",
"isort >=5.0.6,<6.0.0",
"rich >=10.11.0,<13.0.0",
"rich >=10.11.0,<14.0.0",
]
doc = [
"mkdocs >=1.1.2,<2.0.0",
Expand All @@ -66,7 +66,7 @@ dev = [
all = [
"colorama >=0.4.3,<0.5.0",
"shellingham >=1.3.0,<2.0.0",
"rich >=10.11.0,<13.0.0",
"rich >=10.11.0,<14.0.0",
]

[tool.isort]
Expand Down

0 comments on commit 6664f1e

Please sign in to comment.