From 4ad8d2b57f4937300e89983143d7918d26727bf5 Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Tue, 26 Nov 2019 10:09:31 +0100 Subject: [PATCH] Add `python_requires` to `setup.json` (#3574) This will allow `pip>=9.0` to install a version of the package that is compatible with the current python runtime. --- setup.json | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.json b/setup.json index 986dd99a68..633f929d1b 100644 --- a/setup.json +++ b/setup.json @@ -6,6 +6,7 @@ "author": "The AiiDA team", "author_email": "developers@aiida.net", "include_package_data": true, + "python_requires": ">=2.7,!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "classifiers": [ "Framework :: AiiDA", "License :: OSI Approved :: MIT License",