You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you build kivymd from a directory that has kivymd in the path, the .kv and other asset files are omitted, as out_files.append(filepath.split(f"kivymd{os.sep}")[1]) (in setup.py) truncates at the first instance of kivymd.
For example: running python -m build from ~/workspace/kivymd/foo creates kivymd-2.0.1.dev0.tar.gz without any .kv files in it. While running from ~/workspace/bar/foo/ includes the .kv files.
The text was updated successfully, but these errors were encountered:
If you build
kivymd
from a directory that haskivymd
in the path, the.kv
and other asset files are omitted, asout_files.append(filepath.split(f"kivymd{os.sep}")[1])
(insetup.py
) truncates at the first instance ofkivymd
.For example: running
python -m build
from~/workspace/kivymd/foo
createskivymd-2.0.1.dev0.tar.gz
without any.kv
files in it. While running from~/workspace/bar/foo/
includes the.kv
files.The text was updated successfully, but these errors were encountered: