summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-03-01 07:55:38 -0800
committerCharles Harris <charlesr.harris@gmail.com>2013-03-01 07:55:38 -0800
commit3c13c0a925276130d66be490eed4ae337712cce2 (patch)
tree204051e6c3f2ff670c95cfc734d017a9b400a2fa /setup.py
parent02cfcb99bc976a0bfc39529999e2a0200fb9cc2a (diff)
parent0e4e5084e1e4a2fb369db5b4f43c500c3a9cbcd8 (diff)
downloadnumpy-3c13c0a925276130d66be490eed4ae337712cce2.tar.gz
Merge pull request #3056 from charris/2to3-filter
2to3: Apply `filter` fixes. Closes #3053.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 40b021045..5c69f6e13 100755
--- a/setup.py
+++ b/setup.py
@@ -50,7 +50,7 @@ LONG_DESCRIPTION = "\n".join(DOCLINES[2:])
URL = "http://www.numpy.org"
DOWNLOAD_URL = "http://sourceforge.net/projects/numpy/files/NumPy/"
LICENSE = 'BSD'
-CLASSIFIERS = filter(None, CLASSIFIERS.split('\n'))
+CLASSIFIERS = [_f for _f in CLASSIFIERS.split('\n') if _f]
AUTHOR = "Travis E. Oliphant et al."
AUTHOR_EMAIL = "oliphant@enthought.com"
PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]