Skip to content

Commit 6247d6b

Browse files
authored
Merge pull request #3 from qosst/fix-pysimplegui
fix(gui): 🐛 Replace PySimpleGUI by FreeSimpleGUI
2 parents 612563f + bd3df86 commit 6247d6b

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "qosst-bob"
3-
version = "0.10.1"
3+
version = "0.10.2"
44
description = "Bob submodule of QOSST, containing modules for Bob client, the GUI, the DSP of Bob and parameters estimation."
55
authors = [
66
"Yoann Piétri <Yoann.Pietri@lip6.fr>",
@@ -35,9 +35,8 @@ matplotlib = [
3535
{ version = "^3.5.1", python = ">=3.9, <3.11" },
3636
{ version = "^3.7.1", python = ">=3.11, <3.13" },
3737
]
38-
PySimpleGUI = "^4.57.0 "
3938
scipy = "^1.10"
40-
39+
freesimplegui = "^5.1.0"
4140

4241
[tool.poetry.group.dev.dependencies]
4342
myst-parser = "^1.0.0"

qosst_bob/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"""
1818
QOSST module for Bob.
1919
"""
20-
__version__ = "0.10.1"
20+
__version__ = "0.10.2"

qosst_bob/gui/bobgui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from typing import Union, List, Tuple, Optional
2424

2525
import numpy as np
26-
import PySimpleGUI as sg
26+
import FreeSimpleGUI as sg
2727
import matplotlib
2828
import matplotlib.pyplot as plt
2929

qosst_bob/gui/figures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
from matplotlib.axes import Axes
4242
from matplotlib.figure import Figure
4343
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
44-
import PySimpleGUI as sg
44+
import FreeSimpleGUI as sg
4545

4646
from qosst_bob.bob import Bob
4747
from qosst_bob.utils import heatmap_complex

qosst_bob/gui/layout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818
Layout for Bob gui.
1919
"""
20-
import PySimpleGUI as sg
20+
import FreeSimpleGUI as sg
2121

2222
from qosst_bob import __version__
2323
from qosst_bob.gui.figures import all_figures

0 commit comments

Comments
 (0)