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 9fdf004 commit 7e08ce2Copy full SHA for 7e08ce2
src/tasks/pyqt.cpp
@@ -37,9 +37,12 @@ namespace mob::tasks {
37
38
url source_url()
39
{
40
- return "https://pypi.io/packages/source/P/PyQt6/"
41
- "PyQt6-" +
42
- pyqt::version() + ".tar.gz";
+ const auto version = pyqt::version();
+ std::string base = "https://pypi.io/packages/source/P/PyQt6/";
+ if (version.find("dev") != std::string::npos) {
43
+ base = "https://riverbankcomputing.com/pypi/packages/PyQt6/";
44
+ }
45
+ return base + "PyQt6-" + pyqt::version() + ".tar.gz";
46
}
47
48
url prebuilt_url()
0 commit comments