We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de34817 commit 3e2f191Copy full SHA for 3e2f191
setup.py
@@ -169,6 +169,9 @@ def qt_download_check_extract(cfg, dir_install):
169
if archive_name.startswith(module_name):
170
archives_match.append([package_name, data["version"], archive_name])
171
172
+ if not archives_match:
173
+ raise RuntimeError(f"no matches for Qt modules ({cfg['versions']['qt_modules']}) found")
174
+
175
for package_name, package_version, archive_name in archives_match:
176
url_archive = base_url+'/'+package_name+'/'+package_version+archive_name
177
0 commit comments