From db55b0295dc718d858a53e5c408b694f9c04e732 Mon Sep 17 00:00:00 2001 From: Augustin Borsu Date: Tue, 7 Nov 2017 13:58:19 +0100 Subject: [PATCH] remove pre-commit dependency (#75) Pre-commit is a dev tool used to run quality checks before commiting. It should not be in the main dependencies of the application. Since there is no pre-commit config file, (.pre-commit-config.yaml) I've taken the liberty to remove it altogether. Fixes #74 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d17fef89..22aa12d8 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ packages = ['saspy'], cmdclass = {}, package_data = {'': ['*.js', '*.md', '*.yaml', '*.css', '*.rst'], 'saspy': ['*.sas', 'java/*.*', 'java/pyiom/*.*']}, - install_requires = ['pygments', 'ipython>=4.0.0', 'pre-commit'], + install_requires = ['pygments', 'ipython>=4.0.0'], classifiers = [ 'Programming Language :: Python :: 3', "Programming Language :: Python :: 3.4",