From 158b6a3f959931b3314d0d608bef64c4ad14c776 Mon Sep 17 00:00:00 2001 From: Diego Tavares Date: Fri, 13 Dec 2024 11:35:10 -0800 Subject: [PATCH] [cicd] Limit dependency for pip package NodeGraphQtPy (#1619) For now, cuesubmit's release pipeline is still based on centos7 and python36. I'm limiting the NodeGraphQtPy dependency to python3.7 to avoid crashing the pipeline. Cuesubmit doesn't really depend on this package. --- requirements_gui.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_gui.txt b/requirements_gui.txt index b93a77357..a03972ac7 100644 --- a/requirements_gui.txt +++ b/requirements_gui.txt @@ -3,4 +3,4 @@ PySide6==6.5.3;python_version=="3.11" PySide2==5.15.2.1;python_version<="3.10" QtPy==1.11.3;python_version<"3.7" QtPy==2.4.1;python_version>="3.7" -NodeGraphQtPy==0.6.38.6 +NodeGraphQtPy==0.6.38.6;python_version>="3.7"