chore(deps): Require pathspec >= 0.5.3

This new version adds support for Python 2.6.
This commit is contained in:
Adrien Vergé 2017-07-04 20:37:39 +02:00
parent f9709bc6e6
commit 7a8cfeed6d

View File

@ -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',
)