Enforce python 3.5+ in setup.py.

This commit is contained in:
Romain Dorgueil
2018-05-21 12:25:35 +02:00
parent 5b303c403d
commit 100451bcc4
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ yapf = require('yapf')
python.setup( python.setup(
name='bonobo', name='bonobo',
python_requires='>=3.5',
description='Bonobo, a simple, modern and atomic extract-transform-load toolkit for python 3.5+.', description='Bonobo, a simple, modern and atomic extract-transform-load toolkit for python 3.5+.',
license='Apache License, Version 2.0', license='Apache License, Version 2.0',
url='https://www.bonobo-project.org/', url='https://www.bonobo-project.org/',

View File

@ -54,6 +54,7 @@ setup(
'python 3.5+.'), 'python 3.5+.'),
license='Apache License, Version 2.0', license='Apache License, Version 2.0',
name='bonobo', name='bonobo',
python_requires='>=3.5',
version=version, version=version,
long_description=long_description, long_description=long_description,
classifiers=classifiers, classifiers=classifiers,