Skip to content

Commit

Permalink
Test to switch back to PyQt5 instead of PyQt6
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenain committed Jan 31, 2025
1 parent eeef613 commit c4fbe57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies = [
"zeo",
"lmfit",
"h5py",
"pyqt6",
"pyqt",
"pyqtgraph",
]

Expand Down
6 changes: 3 additions & 3 deletions src/nectarchain/trr_test_suite/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
import sys
import tempfile

from matplotlib.backends.backend_qt import NavigationToolbar2QT as NavigationToolbar
from matplotlib.backends.backend_qt5 import NavigationToolbar2QT as NavigationToolbar
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
from matplotlib.figure import Figure
from PyQt6.QtCore import QProcess, QTimer
from PyQt6.QtWidgets import (
from PyQt5.QtCore import QProcess, QTimer
from PyQt5.QtWidgets import (
QApplication,
QComboBox,
QGroupBox,
Expand Down

0 comments on commit c4fbe57

Please sign in to comment.