Skip to content

Commit

Permalink
Use Qt5
Browse files Browse the repository at this point in the history
sbourdeauducq committed Feb 8, 2016
1 parent dc955d4 commit d873c25
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions artiq/frontend/artiq_gui.py
Original file line number Diff line number Diff line change
@@ -5,11 +5,13 @@
import atexit
import os

# Quamash must be imported first so that pyqtgraph picks up the Qt binding
# it has chosen.
import PyQt5
from quamash import QEventLoop, QtGui, QtCore
assert QtGui is PyQt5.QtGui
# pyqtgraph will pick up any already imported Qt binding.
from pyqtgraph import dockarea


from artiq import __artiq_dir__ as artiq_dir
from artiq.tools import *
from artiq.protocols.pc_rpc import AsyncioClient, Server
1 change: 1 addition & 0 deletions conda/artiq/meta.yaml
Original file line number Diff line number Diff line change
@@ -46,6 +46,7 @@ requirements:
- sphinx-argparse
- h5py
- dateutil
- pyqt 5.*
- quamash
- pyqtgraph
- pygit2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@

requirements = [
"sphinx", "sphinx-argparse", "pyserial", "numpy", "scipy",
"python-dateutil", "prettytable", "h5py",
"python-dateutil", "prettytable", "h5py", "pyqt5",
"quamash", "pyqtgraph", "pygit2", "aiohttp",
"llvmlite_artiq", "pythonparser", "python-Levenshtein",
"lit", "OutputCheck",

0 comments on commit d873c25

Please sign in to comment.