From 61bb0821fcf7176f371103a243d2b28ff8420d14 Mon Sep 17 00:00:00 2001 From: "Andreas H. Kelch" Date: Thu, 17 Mar 2022 20:42:44 +0100 Subject: [PATCH] fix: disabled autoinstall --- .gitignore | 1 + CHANGELOG.md | 1 + setup.py | 5 +---- 3 files changed, 3 insertions(+), 4 deletions(-) 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()