Skip to content

Commit cb584c2

Browse files
committed
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.
1 parent e771626 commit cb584c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
test_suite = "tests.suite",
4747
packages = ['amfast', 'amfast.class_def', 'amfast.remoting'],
4848
features = {'extensions': extensions},
49-
install_requires = {
50-
'uuid': 'uuid>=1.3.0'
51-
},
49+
install_requires = []
50+
'uuid>=1.3.0'
51+
],
5252
classifiers = [
5353
"Programming Language :: Python :: 2.4",
5454
"Programming Language :: Python :: 2.5",

0 commit comments

Comments
 (0)