Skip to content

Commit b0bb51c

Browse files
Mark JessopMark Jessop
authored andcommitted
Revert back to PyQt5
1 parent f5d9e87 commit b0bb51c

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,14 @@ $ export CFLAGS="-I/opt/local/include"
9595
$ export LDFLAGS="-L/opt/local/lib"
9696
(venv) $ pip install pyaudio
9797
```
98+
99+
On OSX using Homebrew
100+
```
101+
$ export CFLAGS="-I/opt/homebrew/include"
102+
$ export LDFLAGS="-L/opt/homebrew/lib"
103+
(venv) $ pip install pyaudio
104+
```
105+
98106
You should then be able to re-run the install requirements command above.
99107

100108
### Install Package

horusgui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.0"
1+
__version__ = "0.3.16"

horusgui/gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import numpy as np
2424
from queue import Queue
2525
#from pyqtgraph.Qt import QtCore, QtGui, QtWidgets
26-
from PyQt6 import QtWidgets, QtGui
26+
from PyQt5 import QtWidgets, QtGui
2727
from pyqtgraph.dockarea import *
2828
from threading import Thread
2929

horusgui/widgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Useful widgets
2-
from PyQt6 import QtWidgets
2+
from PyQt5 import QtWidgets
33

44
# Useful class for adding horizontal lines.
55
class QHLine(QtWidgets.QFrame):

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[tool.poetry]
22
name = "horusgui"
3-
version = "0.4.0"
3+
version = "0.3.16"
44
description = ""
55
authors = ["Mark Jessop <[email protected]>"]
66

77
[tool.poetry.dependencies]
88
python = "^3.6"
99
requests = "^2.24.0"
1010
crcmod = "^1.7"
11-
PyQt6 = "^6.6.0"
12-
pyqtgraph = "^0.13.0"
11+
PyQt5 = "^5.15.0"
12+
pyqtgraph = "^0.12.3"
1313
pyaudio = "^0.2.11"
14-
"ruamel.yaml" = "^0.16.10"
1514
horusdemodlib = "^0.3.13"
1615

1716
[tool.poetry.dev-dependencies]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
numpy
22
pyaudio
33
crcmod
4-
PyQt6
4+
PyQt5
55
pyqtgraph
66
requests
77
horusdemodlib>=0.3.12

0 commit comments

Comments
 (0)