Skip to content

Commit b3a1837

Browse files
committed
Refresh the "rich" dependency for better Markdown printing
1 parent b905d86 commit b3a1837

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,10 @@ pyotp==2.8.0;python_version>="3.7"
8888
cffi==1.15.1
8989
typing-extensions==4.1.1;python_version>="3.6" and python_version<"3.7"
9090
typing-extensions==4.4.0;python_version>="3.7" and python_version<"3.9"
91+
markdown-it-py==2.1.0;python_version>="3.7"
92+
mdurl==0.1.2;python_version>="3.7"
9193
rich==12.6.0;python_version>="3.6" and python_version<"3.7"
92-
rich==13.1.0;python_version>="3.7" and python_version<"4.0"
94+
rich==13.2.0;python_version>="3.7"
9395

9496
# --- Testing Requirements --- #
9597
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,10 @@
212212
"cffi==1.15.1",
213213
'typing-extensions==4.1.1;python_version>="3.6" and python_version<"3.7"', # noqa: E501
214214
'typing-extensions==4.4.0;python_version>="3.7" and python_version<"3.9"', # noqa: E501
215+
'markdown-it-py==2.1.0;python_version>="3.7"', # For "rich"
216+
'mdurl==0.1.2;python_version>="3.7"', # For "rich"
215217
'rich==12.6.0;python_version>="3.6" and python_version<"3.7"',
216-
'rich==13.1.0;python_version>="3.7" and python_version<"4.0"',
218+
'rich==13.2.0;python_version>="3.7"',
217219
],
218220
extras_require={
219221
# pip install -e .[coverage]

0 commit comments

Comments
 (0)