test debug for windows runner

dev_dylan
Theophile Terraz 2026-03-24 12:04:01 +01:00
parent bf49a7fc87
commit 912843be25
3 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@ PyQt5-sip==12.18.0
PyQtWebEngine==5.15.6
QScintilla>=2.14.1
pyqtgraph>=0.12.1
matplotlib>=3.7.1
matplotlib>=3.7.1, < 3.10.0
numpy>=1.24.2
colorama>=0.4.3
pyinstaller>=5.11.0

View File

@ -1,6 +1,6 @@
PyQt5==5.15.4
PyQt5==5.15.11
PyQt5-Qt5==5.15.2
PyQt5-sip==12.12.2
PyQt5-sip==12.18.0
#PyQtWebEngine==5.15.6
QScintilla>=2.14.1
pyqtgraph>=0.12.1

View File

@ -55,9 +55,9 @@ class D90TableDefaultModel(PamhyrTableModel):
row = index.row()
column = index.column()
if self._headers[column] is "name":
if self._headers[column] == "name":
return self._data[row].name
elif self._headers[column] is "d90":
elif self._headers[column] == "d90":
n = self._data[row].d90
if n is None:
return self._trad['not_associated']