Skip to content

Commit a4288c1

Browse files
committed
bug fix
1 parent 8813d55 commit a4288c1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/source/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ Glossary
3131
----------------------
3232
Releases
3333
----------------------
34+
v2.8.2
35+
=================
36+
- Fixed auto installation of ttkboostrap not opening the main window at the end.
37+
3438

3539
v2.8.1
3640
=================

src/daf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
from .misc import *
2020

2121

22-
VERSION = "2.8.1"
22+
VERSION = "2.8.2"

src/daf_gui/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
if not installed:
2020
print("Auto installing requirements: ttkbootstrap")
21-
subprocess.check_call([sys.executable, "-m", "pip", "install", f"ttkbootstrap=={TTKBOOSTRAP_VERSION}"])
21+
subprocess.check_call([sys.executable.replace("pythonw", "python"), "-m", "pip", "install", f"ttkbootstrap=={TTKBOOSTRAP_VERSION}"])
2222

2323

2424
from .convert import *

0 commit comments

Comments
 (0)