1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Dmitry Shachnev <mitya57@debian.org>
Date: Sun, 23 Aug 2020 18:04:51 +0300
Subject: Do not override Python build commands
We do not use webpack in debian packaging.
---
setup.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/setup.py b/setup.py
index 36a2a98..e42f539 100644
--- a/setup.py
+++ b/setup.py
@@ -90,7 +90,5 @@ setup(
cmdclass={
'update_translations': UpdateTranslationsCommand,
'transifex': TransifexCommand,
- 'build_assets': WebpackBuildCommand,
- 'watch': WebpackDevelopCommand,
},
)
|