File: skip-verify-external-req

package info (click to toggle)
typeshed 0.0~git20241223.ea91db2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,824 kB
  • sloc: python: 7,745; makefile: 21; sh: 18
file content (14 lines) | stat: -rw-r--r-- 532 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Author: Michael R. Crusoe <crusoe@debian.org>
Description: skip check that requires internet access to pypi.org
Forwarded: not-needed
--- typeshed.orig/stub-uploader/stub_uploader/metadata.py
+++ typeshed/stub-uploader/stub_uploader/metadata.py
@@ -84,8 +84,6 @@
     @functools.cached_property
     def requires_external(self) -> list[Requirement]:
         reqs = self._unvalidated_requires_external
-        for req in reqs:
-            verify_external_req(req, self.upstream_distribution)
         return reqs
 
     @property