Skip to content

Commit 2545c1f

Browse files
committed
Refactor and refresh Python dependencies
1 parent 64ee8fc commit 2545c1f

File tree

2 files changed

+14
-18
lines changed

2 files changed

+14
-18
lines changed

requirements.txt

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ PyYAML>=6.0;python_version>="3.6"
1717
traitlets>=4.3.3;python_version<"3.7"
1818
traitlets>=5.1.1;python_version>="3.7"
1919
certifi>=2021.10.8
20+
filelock>=3.2.1;python_version<"3.6"
21+
filelock>=3.4.1;python_version>="3.6" and python_version<"3.7"
22+
filelock>=3.6.0;python_version>="3.7"
23+
platformdirs>=2.0.2;python_version<"3.6"
24+
platformdirs>=2.4.0;python_version>="3.6" and python_version<"3.7"
25+
platformdirs>=2.5.1;python_version>="3.7"
2026
six==1.16.0
2127
ipdb==0.13.4;python_version<"3.5"
2228
ipdb==0.13.9;python_version>="3.5"
@@ -39,17 +45,14 @@ h11==0.13.0;python_version>="3.7"
3945
trio==0.20.0;python_version>="3.7"
4046
trio-websocket==0.9.2;python_version>="3.7"
4147
pyopenssl==22.0.0;python_version>="3.7"
42-
wsproto==1.0.0;python_version>="3.7"
48+
wsproto==1.1.0;python_version>="3.7"
4349
selenium==3.141.0;python_version<"3.7"
4450
selenium==4.1.2;python_version>="3.7"
4551
msedge-selenium-tools==3.141.3;python_version<"3.7"
4652
more-itertools==5.0.0;python_version<"3.5"
4753
more-itertools==8.12.0;python_version>="3.5"
4854
cssselect==1.1.0
4955
sortedcontainers==2.4.0
50-
filelock==3.2.1;python_version<"3.6"
51-
filelock==3.4.1;python_version>="3.6" and python_version<"3.7"
52-
filelock==3.6.0;python_version>="3.7"
5356
fasteners==0.16;python_version<"3.5"
5457
fasteners==0.16.3;python_version>="3.5" and python_version<"3.6"
5558
fasteners==0.17.3;python_version>="3.6"
@@ -97,13 +100,8 @@ ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
97100
ipython==7.32.0;python_version>="3.7"
98101
matplotlib-inline==0.1.3;python_version>="3.7"
99102
colorama==0.4.4
100-
platformdirs==2.0.2;python_version<"3.6"
101-
platformdirs==2.4.0;python_version>="3.6" and python_version<"3.7"
102-
platformdirs==2.5.1;python_version>="3.7"
103-
pathlib2==2.3.6;python_version<"3.5"
104103
importlib-metadata==2.1.3;python_version<"3.6"
105104
importlib-metadata==4.2.0;python_version>="3.6" and python_version<"3.8"
106-
virtualenv>=20.13.2
107105
pycparser==2.21
108106
pymysql==0.10.1;python_version<"3.6"
109107
pymysql==1.0.2;python_version>="3.6"

setup.py

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,12 @@
142142
'traitlets>=4.3.3;python_version<"3.7"',
143143
'traitlets>=5.1.1;python_version>="3.7"',
144144
"certifi>=2021.10.8",
145+
'filelock>=3.2.1;python_version<"3.6"',
146+
'filelock>=3.4.1;python_version>="3.6" and python_version<"3.7"',
147+
'filelock>=3.6.0;python_version>="3.7"',
148+
'platformdirs>=2.0.2;python_version<"3.6"',
149+
'platformdirs>=2.4.0;python_version>="3.6" and python_version<"3.7"',
150+
'platformdirs>=2.5.1;python_version>="3.7"',
145151
"six==1.16.0",
146152
'ipdb==0.13.4;python_version<"3.5"',
147153
'ipdb==0.13.9;python_version>="3.5"',
@@ -164,17 +170,14 @@
164170
'trio==0.20.0;python_version>="3.7"',
165171
'trio-websocket==0.9.2;python_version>="3.7"',
166172
'pyopenssl==22.0.0;python_version>="3.7"',
167-
'wsproto==1.0.0;python_version>="3.7"',
173+
'wsproto==1.1.0;python_version>="3.7"',
168174
'selenium==3.141.0;python_version<"3.7"',
169175
'selenium==4.1.2;python_version>="3.7"',
170176
'msedge-selenium-tools==3.141.3;python_version<"3.7"',
171177
'more-itertools==5.0.0;python_version<"3.5"',
172178
'more-itertools==8.12.0;python_version>="3.5"',
173179
"cssselect==1.1.0",
174180
"sortedcontainers==2.4.0",
175-
'filelock==3.2.1;python_version<"3.6"',
176-
'filelock==3.4.1;python_version>="3.6" and python_version<"3.7"',
177-
'filelock==3.6.0;python_version>="3.7"',
178181
'fasteners==0.16;python_version<"3.5"',
179182
'fasteners==0.16.3;python_version>="3.5" and python_version<"3.6"',
180183
'fasteners==0.17.3;python_version>="3.6"',
@@ -222,13 +225,8 @@
222225
'ipython==7.32.0;python_version>="3.7"', # Requires matplotlib-inline
223226
'matplotlib-inline==0.1.3;python_version>="3.7"', # ipython needs this
224227
"colorama==0.4.4",
225-
'platformdirs==2.0.2;python_version<"3.6"',
226-
'platformdirs==2.4.0;python_version>="3.6" and python_version<"3.7"',
227-
'platformdirs==2.5.1;python_version>="3.7"',
228-
'pathlib2==2.3.6;python_version<"3.5"', # Sync with "virtualenv"
229228
'importlib-metadata==2.1.3;python_version<"3.6"',
230229
'importlib-metadata==4.2.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
231-
"virtualenv>=20.13.2", # Sync with importlib-metadata and pathlib2
232230
"pycparser==2.21",
233231
'pymysql==0.10.1;python_version<"3.6"',
234232
'pymysql==1.0.2;python_version>="3.6"',

0 commit comments

Comments
 (0)