From 7a8cfeed6d0e813b1706c32fb4d5a0149cd8645e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Tue, 4 Jul 2017 20:37:39 +0200 Subject: [PATCH] chore(deps): Require pathspec >= 0.5.3 This new version adds support for Python 2.6. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9c54fcd..5d841ca 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ setup( entry_points={'console_scripts': ['yamllint=yamllint.cli:run']}, package_data={'yamllint': ['conf/*.yaml'], 'tests': ['yaml-1.2-spec-examples/*']}, - install_requires=['pathspec', 'pyyaml'], + install_requires=['pathspec >=0.5.3', 'pyyaml'], tests_require=['nose'], test_suite='nose.collector', )