Skip to content
Snippets Groups Projects
Commit 3aaa5de1 authored by inso's avatar inso
Browse files

Using quamash branch

parent 964d5cd8
Branches
Tags
No related merge requests found
ucoinpy>=0.13
git+https://github.com/Insoleet/quamash.git@qeventloop
git+https://github.com/harvimt/quamash.git@gh45
asynctest
git+https://github.com/networkx/networkx.git@v1.11
\ No newline at end of file
......@@ -16,7 +16,7 @@ import jsonschema
# To force cx_freeze import
import PyQt5.QtSvg
from quamash import QEventLoopSelector
from quamash import QSelectorEventLoop
from PyQt5.QtWidgets import QApplication
from sakia.gui.mainwindow import MainWindow
from sakia.core.app import Application
......@@ -61,7 +61,7 @@ if __name__ == '__main__':
# activate ctrl-c interrupt
signal.signal(signal.SIGINT, signal.SIG_DFL)
sakia = QApplication(sys.argv)
loop = QEventLoopSelector(sakia)
loop = QSelectorEventLoop(sakia)
loop.set_exception_handler(async_exception_handler)
asyncio.set_event_loop(loop)
......
......@@ -9,7 +9,7 @@ _application_ = []
class QuamashTest:
def setUpQuamash(self):
self.qapplication = get_application()
self.lp = quamash.QEventLoopSelector(self.qapplication)
self.lp = quamash.QSelectorEventLoop(self.qapplication)
asyncio.set_event_loop(self.lp)
self.lp.set_exception_handler(lambda l, c: unitttest_exception_handler(self, l, c))
self.exceptions = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment