Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to pyside6 #11

Merged
merged 3 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- python>=3.10
- pyqt == 5.*
- pyside6
- qtpy
- scipy
- numpy
Expand All @@ -15,7 +15,7 @@ dependencies:
- libarchive
- anaconda-client
- boa
- conda-build < 4 # conda-build 24.x has a bug, missing update_index from conda_build.index
- conda-build # < 4 # conda-build 24.x has a bug, missing update_index from conda_build.index
- conda-verify
- python-build
- twine # for uploading to pypi and testpypi
Expand Down
8 changes: 0 additions & 8 deletions src/hyspecppt/hyspecppt.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,6 @@
class HyspecPPT(QMainWindow):
"""Main Package window"""

__instance = None

def __new__(cls):
"""Create new instance of the HyspecPPT"""
if not cls.__instance:
cls.__instance = super(HyspecPPT, cls).__new__(cls)
return cls.__instance

def __init__(self, parent=None):
"""Constructor"""
super().__init__(parent)
Expand Down
Loading