Skip to content

Commit 5c1deaa

Browse files
committed
Refresh Python dependencies
1 parent a5aefa4 commit 5c1deaa

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ certifi>=2021.10.8;python_version<"3.6"
2020
certifi>=2022.12.7;python_version>="3.6"
2121
filelock>=3.2.1;python_version<"3.6"
2222
filelock>=3.4.1;python_version>="3.6" and python_version<"3.7"
23-
filelock>=3.8.2;python_version>="3.7"
23+
filelock>=3.9.0;python_version>="3.7"
2424
platformdirs>=2.0.2;python_version<"3.6"
2525
platformdirs>=2.4.0;python_version>="3.6" and python_version<"3.7"
26-
platformdirs>=2.6.0;python_version>="3.7"
26+
platformdirs>=2.6.2;python_version>="3.7"
2727
pyparsing>=2.4.7;python_version<"3.6"
2828
pyparsing>=3.0.7;python_version>="3.6" and python_version<"3.7"
2929
pyparsing>=3.0.9;python_version>="3.7"
@@ -115,7 +115,8 @@ cffi==1.15.1
115115
typing-extensions==3.10.0.2;python_version<"3.6"
116116
typing-extensions==4.1.1;python_version>="3.6" and python_version<"3.7"
117117
typing-extensions==4.4.0;python_version>="3.7" and python_version<"3.9"
118-
rich==12.6.0;python_version>="3.6" and python_version<"4.0"
118+
rich==12.6.0;python_version>="3.6" and python_version<"3.7"
119+
rich==13.0.0;python_version>="3.7" and python_version<"4.0"
119120

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

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,10 @@
148148
'certifi>=2022.12.7;python_version>="3.6"',
149149
'filelock>=3.2.1;python_version<"3.6"',
150150
'filelock>=3.4.1;python_version>="3.6" and python_version<"3.7"',
151-
'filelock>=3.8.2;python_version>="3.7"',
151+
'filelock>=3.9.0;python_version>="3.7"',
152152
'platformdirs>=2.0.2;python_version<"3.6"',
153153
'platformdirs>=2.4.0;python_version>="3.6" and python_version<"3.7"',
154-
'platformdirs>=2.6.0;python_version>="3.7"',
154+
'platformdirs>=2.6.2;python_version>="3.7"',
155155
'pyparsing>=2.4.7;python_version<"3.6"',
156156
'pyparsing>=3.0.7;python_version>="3.6" and python_version<"3.7"',
157157
'pyparsing>=3.0.9;python_version>="3.7"',
@@ -242,7 +242,8 @@
242242
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.9 for "rich"
243243
'typing-extensions==4.1.1;python_version>="3.6" and python_version<"3.7"', # noqa: E501
244244
'typing-extensions==4.4.0;python_version>="3.7" and python_version<"3.9"', # noqa: E501
245-
'rich==12.6.0;python_version>="3.6" and python_version<"4.0"',
245+
'rich==12.6.0;python_version>="3.6" and python_version<"3.7"',
246+
'rich==13.0.0;python_version>="3.7" and python_version<"4.0"',
246247
],
247248
extras_require={
248249
# pip install -e .[coverage]

0 commit comments

Comments
 (0)