Skip to content

Commit

Permalink
Need to wrap filter call in list because we can't user an irritator a…
Browse files Browse the repository at this point in the history
…s package metadata.
  • Loading branch information
Jim Fulton committed Jun 6, 2016
1 parent 6af2a02 commit 53c31a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def read_file(*path):
license = "ZPL 2.1",
platforms = ["any"],
description = doclines[0],
classifiers = filter(None, classifiers.split("\n")),
classifiers = list(filter(None, classifiers.split("\n"))),
long_description = long_description,
test_suite="__main__.alltests", # to support "setup.py test"
tests_require = tests_require,
Expand Down

2 comments on commit 53c31a5

@tseaver
Copy link
Member

@tseaver tseaver commented on 53c31a5 Jun 6, 2016

Choose a reason for hiding this comment

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

One might see this commit as a judgement against keeping the classifiers as a string literal. :)

@mgedmin
Copy link
Member

@mgedmin mgedmin commented on 53c31a5 Jun 7, 2016

Choose a reason for hiding this comment

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

Best typo for 'iterator' I've eve seen!

Please sign in to comment.