We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8163759 + bf878ce commit 57c610dCopy full SHA for 57c610d
1 file changed
verify_release
@@ -16,7 +16,13 @@ import sys
16
from filecmp import dircmp
17
from tempfile import TemporaryDirectory
18
19
-import requests
+try:
20
+ import requests
21
+ import build
22
+except ImportError:
23
+ print ("Error: verify_release requires modules 'requests' and 'build':")
24
+ print (" pip install requests build")
25
+ exit(1)
26
27
# Project variables
28
# Note that only these project artifacts are supported:
0 commit comments