Skip to content

Commit

Permalink
Merge pull request #643 from mprib/expand-python-compatibility
Browse files Browse the repository at this point in the history
remove dark theme as a dependency
  • Loading branch information
mprib authored Sep 16, 2024
2 parents 844e6ef + c981205 commit c375d1e
Show file tree
Hide file tree
Showing 4 changed files with 1,179 additions and 1,033 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ['3.10','3.11']
python-version: ['3.10','3.11', '3.12']
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions caliscope/gui/main_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,12 +241,12 @@ def update_app_settings(self):


def launch_main():
import qdarktheme
# import qdarktheme

app = QApplication(sys.argv)
dummy_widget = CaptureVolumeVisualizer(camera_array=CameraArray({})) # try to force "blinking to initial main"
del dummy_widget
qdarktheme.setup_theme("auto")
# qdarktheme.setup_theme("auto")
window = MainWindow()
window.show()
app.exec()
Expand Down
Loading

0 comments on commit c375d1e

Please sign in to comment.