File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,9 @@ description=Python interface to ODBC
124
124
[cffi]
125
125
description=Foreign Function Interface for Python calling C code.
126
126
127
+ [chainer]
128
+ description=A flexible framework of neural networks
129
+
127
130
[chardet]
128
131
description=Universal encoding detector for Python 2 and 3
129
132
@@ -263,6 +266,9 @@ description=A python package that provides useful locks.
263
266
[fastparquet]
264
267
description=Python support for Parquet file format
265
268
269
+ [filelock]
270
+ description=A platform independent file lock.
271
+
266
272
[flask]
267
273
description=A microframework based on Werkzeug, Jinja2 and good intentions
268
274
Original file line number Diff line number Diff line change @@ -145,7 +145,8 @@ def extract_infos(self):
145
145
# PyQt5-5.7.1-5.7.1-cp34.cp35.cp36-none-win_amd64.whl
146
146
bname2 = bname [:- 4 ].split ("-" )
147
147
self .name = bname2 [0 ]
148
- self .version , self .pywheel , abi , arch = bname2 [- 4 :]
148
+ self .version = '-' .join (list (bname2 [1 :- 3 ]))
149
+ self .pywheel , abi , arch = bname2 [- 3 :]
149
150
self .pyversion = None # Let's ignore this self.pywheel
150
151
# wheel arch is 'win32' or 'win_amd64'
151
152
self .architecture = 32 if arch == 'win32' else 64
You can’t perform that action at this time.
0 commit comments