Add python 3.7 support and fix pylint issues

This commit is contained in:
Rémi Alvergnat
2018-10-14 21:32:15 +02:00
parent a54e8acdd3
commit 85e0ab4b51
12 changed files with 41 additions and 40 deletions
+3 -4
View File
@@ -16,14 +16,13 @@ with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
with io.open(os.path.join(here, 'HISTORY.rst'), encoding='utf-8') as f:
history = f.read()
install_requires = ['rebulk>=0.9.0', 'babelfish>=0.5.5', 'python-dateutil']
if sys.version_info < (2, 7):
install_requires.extend(['argparse', 'ordereddict'])
install_requires = ['rebulk', 'babelfish', 'python-dateutil']
setup_requires = ['pytest-runner']
dev_require = ['zest.releaser[recommended]', 'pylint', 'tox', 'sphinx', 'sphinx-autobuild']
tests_require = ['pytest>=2.7.3', 'pytest-benchmark', 'PyYAML']
tests_require = ['pytest>=3.3', 'pytest-benchmark', 'PyYAML']
package_data = ['config/*']