Skip to content

Commit 0ab6609

Browse files
committed
Refresh Python dependencies
1 parent 299cc2c commit 0ab6609

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pip>=21.3.1;python_version<"3.7"
2-
pip>=23.0.1;python_version>="3.7"
2+
pip>=23.1;python_version>="3.7"
33
packaging>=21.3;python_version<"3.7"
4-
packaging>=23.0;python_version>="3.7"
4+
packaging>=23.1;python_version>="3.7"
55
setuptools>=59.6.0;python_version<"3.7"
66
setuptools>=67.6.1;python_version>="3.7"
77
keyring>=23.4.1;python_version<"3.8"
@@ -59,7 +59,7 @@ iniconfig==2.0.0;python_version>="3.7"
5959
pluggy==1.0.0
6060
py==1.11.0
6161
pytest==7.0.1;python_version<"3.7"
62-
pytest==7.3.0;python_version>="3.7"
62+
pytest==7.3.1;python_version>="3.7"
6363
pytest-forked==1.4.0;python_version<"3.7"
6464
pytest-forked==1.6.0;python_version>="3.7"
6565
pytest-html==2.0.1
@@ -78,7 +78,7 @@ soupsieve==2.3.2.post1;python_version<"3.7"
7878
soupsieve==2.4;python_version>="3.7"
7979
beautifulsoup4==4.12.2
8080
cryptography==36.0.2;python_version<"3.7"
81-
cryptography==40.0.1;python_version>="3.7"
81+
cryptography==40.0.2;python_version>="3.7"
8282
pygments==2.14.0;python_version<"3.7"
8383
pygments==2.15.0;python_version>="3.7"
8484
pyreadline3==3.4.1;platform_system=="Windows"
@@ -99,7 +99,7 @@ commonmark==0.9.1;python_version<"3.7"
9999
markdown-it-py==2.2.0;python_version>="3.7"
100100
mdurl==0.1.2;python_version>="3.7"
101101
rich==12.6.0;python_version<"3.7"
102-
rich==13.3.3;python_version>="3.7"
102+
rich==13.3.4;python_version>="3.7"
103103

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

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@
123123
python_requires=">=3.6",
124124
install_requires=[
125125
'pip>=21.3.1;python_version<"3.7"',
126-
'pip>=23.0.1;python_version>="3.7"',
126+
'pip>=23.1;python_version>="3.7"',
127127
'packaging>=21.3;python_version<"3.7"',
128-
'packaging>=23.0;python_version>="3.7"',
128+
'packaging>=23.1;python_version>="3.7"',
129129
'setuptools>=59.6.0;python_version<"3.7"',
130130
'setuptools>=67.6.1;python_version>="3.7"',
131131
'keyring>=23.4.1;python_version<"3.8"',
@@ -183,7 +183,7 @@
183183
"pluggy==1.0.0",
184184
"py==1.11.0",
185185
'pytest==7.0.1;python_version<"3.7"',
186-
'pytest==7.3.0;python_version>="3.7"',
186+
'pytest==7.3.1;python_version>="3.7"',
187187
'pytest-forked==1.4.0;python_version<"3.7"',
188188
'pytest-forked==1.6.0;python_version>="3.7"',
189189
"pytest-html==2.0.1", # Newer ones had issues
@@ -202,7 +202,7 @@
202202
'soupsieve==2.4;python_version>="3.7"',
203203
"beautifulsoup4==4.12.2",
204204
'cryptography==36.0.2;python_version<"3.7"',
205-
'cryptography==40.0.1;python_version>="3.7"',
205+
'cryptography==40.0.2;python_version>="3.7"',
206206
'pygments==2.14.0;python_version<"3.7"',
207207
'pygments==2.15.0;python_version>="3.7"',
208208
'pyreadline3==3.4.1;platform_system=="Windows"',
@@ -223,7 +223,7 @@
223223
'markdown-it-py==2.2.0;python_version>="3.7"', # For new "rich"
224224
'mdurl==0.1.2;python_version>="3.7"', # For new "rich"
225225
'rich==12.6.0;python_version<"3.7"',
226-
'rich==13.3.3;python_version>="3.7"',
226+
'rich==13.3.4;python_version>="3.7"',
227227
],
228228
extras_require={
229229
# pip install -e .[allure]

0 commit comments

Comments
 (0)