Skip to content

Commit ae8cffa

Browse files
committed
Refresh Python dependencies
1 parent 069b416 commit ae8cffa

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

requirements.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ keyring>=23.4.1;python_version<"3.8"
88
keyring>=23.13.1;python_version>="3.8"
99
tomli>=1.2.3;python_version<"3.7"
1010
tomli>=2.0.1;python_version>="3.7"
11-
tqdm>=4.64.1
11+
tqdm>=4.64.1;python_version<"3.7"
12+
tqdm>=4.65.0;python_version>="3.7"
1213
wheel>=0.37.1;python_version<"3.7"
1314
wheel>=0.38.4;python_version>="3.7"
1415
attrs==22.1.0;python_version<"3.7"
@@ -18,7 +19,7 @@ certifi>=2022.12.7
1819
filelock>=3.4.1;python_version<"3.7"
1920
filelock>=3.9.0;python_version>="3.7"
2021
platformdirs>=2.4.0;python_version<"3.7"
21-
platformdirs>=3.0.0;python_version>="3.7"
22+
platformdirs>=3.1.0;python_version>="3.7"
2223
pyparsing>=3.0.7;python_version<"3.7"
2324
zipp==3.6.0;python_version<"3.7"
2425
zipp>=3.15.0;python_version>="3.7"
@@ -35,7 +36,7 @@ urllib3==1.26.14;python_version>="3.7"
3536
requests==2.27.1;python_version<"3.7"
3637
requests==2.28.2;python_version>="3.7"
3738
requests-toolbelt==0.10.1
38-
pynose==1.4.1
39+
pynose==1.4.2
3940
sniffio==1.3.0;python_version>="3.7"
4041
h11==0.14.0;python_version>="3.7"
4142
outcome==1.2.0;python_version>="3.7"
@@ -58,7 +59,7 @@ iniconfig==2.0.0;python_version>="3.7"
5859
pluggy==1.0.0
5960
py==1.11.0
6061
pytest==7.0.1;python_version<"3.7"
61-
pytest==7.2.1;python_version>="3.7"
62+
pytest==7.2.2;python_version>="3.7"
6263
pytest-forked==1.4.0;python_version<"3.7"
6364
pytest-forked==1.6.0;python_version>="3.7"
6465
pytest-html==2.0.1
@@ -76,7 +77,7 @@ soupsieve==2.3.2.post1;python_version<"3.7"
7677
soupsieve==2.4;python_version>="3.7"
7778
beautifulsoup4==4.11.2
7879
cryptography==36.0.2;python_version<"3.7"
79-
cryptography==39.0.1;python_version>="3.7"
80+
cryptography==39.0.2;python_version>="3.7"
8081
pygments==2.14.0
8182
pyreadline3==3.4.1;platform_system=="Windows"
8283
tabcompleter==1.1.0

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@
132132
'keyring>=23.13.1;python_version>="3.8"',
133133
'tomli>=1.2.3;python_version<"3.7"',
134134
'tomli>=2.0.1;python_version>="3.7"',
135-
"tqdm>=4.64.1",
135+
'tqdm>=4.64.1;python_version<"3.7"',
136+
'tqdm>=4.65.0;python_version>="3.7"',
136137
'wheel>=0.37.1;python_version<"3.7"',
137138
'wheel>=0.38.4;python_version>="3.7"',
138139
'attrs==22.1.0;python_version<"3.7"',
@@ -142,7 +143,7 @@
142143
'filelock>=3.4.1;python_version<"3.7"',
143144
'filelock>=3.9.0;python_version>="3.7"',
144145
'platformdirs>=2.4.0;python_version<"3.7"',
145-
'platformdirs>=3.0.0;python_version>="3.7"',
146+
'platformdirs>=3.1.0;python_version>="3.7"',
146147
'pyparsing>=3.0.7;python_version<"3.7"',
147148
'zipp==3.6.0;python_version<"3.7"',
148149
'zipp>=3.15.0;python_version>="3.7"',
@@ -159,7 +160,7 @@
159160
'requests==2.27.1;python_version<"3.7"',
160161
'requests==2.28.2;python_version>="3.7"',
161162
'requests-toolbelt==0.10.1',
162-
"pynose==1.4.1",
163+
"pynose==1.4.2",
163164
'sniffio==1.3.0;python_version>="3.7"',
164165
'h11==0.14.0;python_version>="3.7"',
165166
'outcome==1.2.0;python_version>="3.7"',
@@ -182,7 +183,7 @@
182183
"pluggy==1.0.0",
183184
"py==1.11.0",
184185
'pytest==7.0.1;python_version<"3.7"',
185-
'pytest==7.2.1;python_version>="3.7"',
186+
'pytest==7.2.2;python_version>="3.7"',
186187
'pytest-forked==1.4.0;python_version<"3.7"',
187188
'pytest-forked==1.6.0;python_version>="3.7"',
188189
"pytest-html==2.0.1", # Newer ones had issues
@@ -200,7 +201,7 @@
200201
'soupsieve==2.4;python_version>="3.7"',
201202
"beautifulsoup4==4.11.2",
202203
'cryptography==36.0.2;python_version<"3.7"',
203-
'cryptography==39.0.1;python_version>="3.7"',
204+
'cryptography==39.0.2;python_version>="3.7"',
204205
"pygments==2.14.0",
205206
'pyreadline3==3.4.1;platform_system=="Windows"',
206207
"tabcompleter==1.1.0",

0 commit comments

Comments
 (0)