File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -327,12 +327,12 @@ index ec9942f0..1b306ca7 100644
327
327
--- a/setuptools/_vendor/packaging/tags.py
328
328
+++ b/setuptools/_vendor/packaging/tags.py
329
329
@@ -283,7 +283,10 @@ def _glibc_version_string():
330
- # manpage says, "If filename is NULL, then the returned handle is for the
331
- # main program". This way we can let the linker do the work to figure out
332
330
# which libc our process is actually using.
333
- - process_namespace = ctypes.CDLL(None)
331
+ #
332
+ # Note: typeshed is wrong here so we are ignoring this line.
333
+ - process_namespace = ctypes.CDLL(None) # type: ignore
334
334
+ try:
335
- + process_namespace = ctypes.CDLL(None)
335
+ + process_namespace = ctypes.CDLL(None) # type: ignore
336
336
+ except OSError:
337
337
+ return None
338
338
try:
Original file line number Diff line number Diff line change 276
276
"version" : "1.30.1" ,
277
277
},
278
278
"setuptools" : {
279
- "url" : "https://files.pythonhosted.org/packages/b5/96/af1686ea8c1e503f4a81223d4a3410e7587fd52df03083de24161d0df7d4 /setuptools-46.1.3 .zip" ,
280
- "size" : 862431 ,
281
- "sha256" : "795e0475ba6cd7fa082b1ee6e90d552209995627a2a227a47c6ea93282f4bfb1 " ,
282
- "version" : "46.1.3 " ,
279
+ "url" : "https://files.pythonhosted.org/packages/38/cc/db23dbe4efc464c3c0111fedf7d46de8888f05b09488d610f6f8ab6e2544 /setuptools-49.6.0 .zip" ,
280
+ "size" : 2188590 ,
281
+ "sha256" : "46bd862894ed22c2edff033c758c2dc026324788d758e96788e8f7c11f4e9707 " ,
282
+ "version" : "49.6.0 " ,
283
283
},
284
284
"sqlite" : {
285
285
"url" : "https://www.sqlite.org/2020/sqlite-autoconf-3330000.tar.gz" ,
You can’t perform that action at this time.
0 commit comments