diff --git a/.gitignore b/.gitignore index e2a2802..8021db5 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ dist */*.egg-info **/__pycache__ +vue/node_modules diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fc1c73..9fd1ab9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ This file documents any relevant changes. ## [0.6.9] - 2022-03-17 - chore: refactored flare.py to use Python standard library tools and pyminifier directly. +- fix: disabled autoinstall of Autocompletion for bash and zsh ## [0.6.8] - 2022-03-09 - chore: updated app_server to 0.7.3 diff --git a/setup.py b/setup.py index 9aded88..1afed9e 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,4 @@ def run(self): call(['./postinstall.sh']) -setuptools.setup(cmdclass={ - 'develop': PostDevelopCommand, - 'install': PostInstallCommand, - }) +setuptools.setup()