Skip to content

Commit

Permalink
Update to PyQt6 in documentation and requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
mmouchous-ledger committed Mar 11, 2024
1 parent 04fc424 commit d77e9a5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ Documentation is available on [Read the Docs](https://pystages.readthedocs.io).
This library requires the following packages:
- [pyserial](https://pypi.org/project/pyserial/)
- [numpy](https://pypi.org/project/numpy/)
- [pyusb](https://pypi.org/project/pyusb/)
- [pyusb](https://pypi.org/project/pyusb/)
- [PyQt6](https://pypi.org/project/PyQt6/)
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ classifiers = [
dependencies = [
"pyserial",
"pyusb",
"numpy"
"numpy",
"pyqt6"
]

[project.urls]
"Homepage" = "https://github.com/Ledger-Donjon/pystages"
"Bug Tracker" = "https://github.com/Ledger-Donjon/pystages/issues"
"Documentation" = "https://pystages.readthedocs.io/en/latest"
"Documentation" = "https://pystages.readthedocs.io/en/latest"
1 change: 0 additions & 1 deletion pystages/gui/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import sys
from PyQt6.QtGui import QIcon, QPalette, QColor
from .util import resource_path
import sys
from .gui import StageWindow

app = QApplication(sys.argv)
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pyserial
pyusb
numpy
pyqt6

0 comments on commit d77e9a5

Please sign in to comment.