From 6813a0dddc4fb613377ab60bc4212258f693d7e4 Mon Sep 17 00:00:00 2001 From: Cody Scott Date: Thu, 25 Jan 2018 11:19:07 -0500 Subject: [PATCH] Fix install_requires to be a list of strings I have an environment where I get the following error ``` Processing ./AmFast-0.5.3-r541 Complete output from command python setup.py egg_info: error in AmFast setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Unordered types are not allowed ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-vVXFmV-build/ ``` I can't reproduce this in other environments. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 13fa845..85fdffd 100644 --- a/setup.py +++ b/setup.py @@ -46,9 +46,9 @@ test_suite = "tests.suite", packages = ['amfast', 'amfast.class_def', 'amfast.remoting'], features = {'extensions': extensions}, - install_requires = { - 'uuid': 'uuid>=1.3.0' - }, + install_requires = [ + 'uuid>=1.3.0', + ], classifiers = [ "Programming Language :: Python :: 2.4", "Programming Language :: Python :: 2.5",