Skip to content

Commit

Permalink
extras_require is supposed to map extras to lists of packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Jun 9, 2015
1 parent 34237fc commit aa94658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -153,7 +153,7 @@ def read_file(*path):
tests_require = tests_require,
extras_require = {
'test': tests_require,
':python_version != "2.6"': 'zodbpickle >= 0.6.0',
':python_version != "2.6"': ['zodbpickle >= 0.6.0'],
},
install_requires = [
'persistent >= 4.1.0',
Expand Down

1 comment on commit aa94658

@mgedmin
Copy link
Member Author

@mgedmin mgedmin commented on aa94658 Jun 9, 2015

Choose a reason for hiding this comment

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

Prompted by pypa/pip#2870 (comment), which seems to've been mistaken: https://pythonhosted.org/setuptools/setuptools.html#new-and-changed-setup-keywords says the values can be "strings or lists of strings".

Please sign in to comment.