-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cuebot] Fix packaging pipeline (#1525)
Fix both the registry issues for images that rely on centos7 and the pip package compatibility issues for python 3.6. Some changes on PR #1416 didn't take into account that part of the packaging pipeline relies on centos7, which doesn't support python3.7 without installing from source. On the next release, support to rhl7 might be dropped as we upgrade the pipeline to rely on rocky9.
- Loading branch information
1 parent
aa3d1f9
commit 93b7652
Showing
5 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
PySide6==6.7.1;python_version>"3.11" | ||
PySide6==6.5.3;python_version=="3.11" | ||
PySide2==5.15.2.1;python_version<="3.10" | ||
QtPy==2.4.1 | ||
QtPy==1.11.3;python_version<"3.7" | ||
QtPy==2.4.1;python_version>="3.7" |