Skip to content

Commit

Permalink
Ensure the Python 3 version is not installable with Python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
noirbizarre committed Jun 23, 2018
1 parent 0afd86d commit e1e430d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -63,6 +63,7 @@ def pip(filename):
author_email='opendatateam@data.gouv.fr',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.5',
install_requires=install_requires,
setup_requires=['setuptools>=38.6.0'],
tests_require=tests_require,
Expand Down

1 comment on commit e1e430d

@abulte
Copy link
Contributor

@abulte abulte commented on e1e430d Jun 23, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3.6? More testing needed but it seems we’re not compatible with 3.5 (cf first tests on Circle/stretch).

Please sign in to comment.