1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

wxPython removal (#207)

Replacing wxPython with Python's Tkinter.
Also removing the option to choose multiple files as it is unused and causes errors, and fixing the load file/directory spinner.
This commit is contained in:
Gal Novik
2019-01-23 20:49:37 +02:00
committed by GitHub
parent 516547e3df
commit 135f02fb46
5 changed files with 45 additions and 44 deletions

View File

@@ -50,7 +50,7 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
install_requires = list()
extras = dict()
excluded_packages = ['wxPython', 'kubernetes', 'tensorflow'] if slim_package else []
excluded_packages = ['kubernetes', 'tensorflow'] if slim_package else []
with open(path.join(here, 'requirements.txt'), 'r') as f:
for line in f: