1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Author: Nilesh Patra
Last-Update: 2020-09-22
Description: Remove lint operation since this is of no real use to us.
--- a/lang/py3/setup.cfg
+++ b/lang/py3/setup.cfg
@@ -44,7 +44,6 @@
packages = avro
setup_requires =
isort
- pycodestyle
install_requires =
zip_safe = true
scripts =
--- a/lang/py3/setup.py
+++ b/lang/py3/setup.py
@@ -164,7 +164,6 @@
setuptools.setup(cmdclass={
"clean": CleanCommand,
"generate_interop_data": GenerateInteropDataCommand,
- "lint": LintCommand,
})
|