kopia lustrzana https://github.com/projecthorus/horus-gui
rodzic
f5d9e87db8
commit
b0bb51cf2a
|
@ -95,6 +95,14 @@ $ export CFLAGS="-I/opt/local/include"
|
|||
$ export LDFLAGS="-L/opt/local/lib"
|
||||
(venv) $ pip install pyaudio
|
||||
```
|
||||
|
||||
On OSX using Homebrew
|
||||
```
|
||||
$ export CFLAGS="-I/opt/homebrew/include"
|
||||
$ export LDFLAGS="-L/opt/homebrew/lib"
|
||||
(venv) $ pip install pyaudio
|
||||
```
|
||||
|
||||
You should then be able to re-run the install requirements command above.
|
||||
|
||||
### Install Package
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "0.4.0"
|
||||
__version__ = "0.3.16"
|
||||
|
|
|
@ -23,7 +23,7 @@ import pyqtgraph as pg
|
|||
import numpy as np
|
||||
from queue import Queue
|
||||
#from pyqtgraph.Qt import QtCore, QtGui, QtWidgets
|
||||
from PyQt6 import QtWidgets, QtGui
|
||||
from PyQt5 import QtWidgets, QtGui
|
||||
from pyqtgraph.dockarea import *
|
||||
from threading import Thread
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Useful widgets
|
||||
from PyQt6 import QtWidgets
|
||||
from PyQt5 import QtWidgets
|
||||
|
||||
# Useful class for adding horizontal lines.
|
||||
class QHLine(QtWidgets.QFrame):
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "horusgui"
|
||||
version = "0.4.0"
|
||||
version = "0.3.16"
|
||||
description = ""
|
||||
authors = ["Mark Jessop <vk5qi@rfhead.net>"]
|
||||
|
||||
|
@ -8,10 +8,9 @@ authors = ["Mark Jessop <vk5qi@rfhead.net>"]
|
|||
python = "^3.6"
|
||||
requests = "^2.24.0"
|
||||
crcmod = "^1.7"
|
||||
PyQt6 = "^6.6.0"
|
||||
pyqtgraph = "^0.13.0"
|
||||
PyQt5 = "^5.15.0"
|
||||
pyqtgraph = "^0.12.3"
|
||||
pyaudio = "^0.2.11"
|
||||
"ruamel.yaml" = "^0.16.10"
|
||||
horusdemodlib = "^0.3.13"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
numpy
|
||||
pyaudio
|
||||
crcmod
|
||||
PyQt6
|
||||
PyQt5
|
||||
pyqtgraph
|
||||
requests
|
||||
horusdemodlib>=0.3.12
|
||||
|
|
Ładowanie…
Reference in New Issue