From 8679c2abbba5700b8b7437affef11737ce1dfaba Mon Sep 17 00:00:00 2001 From: Sander Land <48946947+sanderland@users.noreply.github.com> Date: Mon, 28 Jun 2021 17:11:42 +0200 Subject: [PATCH] 1.9.1 fix kivymd mro (#447) * fix kivymd mro * edit katrain/core/constants.py Co-authored-by: Sander Land --- katrain/core/constants.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/katrain/core/constants.py b/katrain/core/constants.py index 5ccb8b17..8430cd12 100644 --- a/katrain/core/constants.py +++ b/katrain/core/constants.py @@ -1,5 +1,5 @@ PROGRAM_NAME = "KaTrain" -VERSION = "1.9.0" +VERSION = "1.9.1" HOMEPAGE = "https://github.com/sanderland/katrain" CONFIG_MIN_VERSION = "1.9.0" # keep config files from this version ANALYSIS_FORMAT_VERSION = "1.0" diff --git a/setup.py b/setup.py index 57444b32..e6164290 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ def include_data_files(directory): "wheel", "setuptools", "kivy[full]>=2.0.0", - "kivymd>=0.104.1", + "kivymd==0.104.1", # 0.104.2 was breaking MRO "ffpyplayer", "importlib_resources ;python_version<'3.7'", "urllib3",