Skip to content

Commit

Permalink
remove pre-commit dependency (#75)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Augustin Borsu authored and tomweber-sas committed Nov 7, 2017
1 parent 7025a9f commit db55b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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",
Expand Down

0 comments on commit db55b02

Please sign in to comment.