Skip to content

Commit ea2049c

Browse files
committed
Exclude IPython.quarantine from installation.
1 parent 47367a0 commit ea2049c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setupbase.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ def find_packages():
100100
"""
101101
Find all of IPython's packages.
102102
"""
103-
excludes = ['deathrow']
103+
excludes = ['deathrow', 'quarantine']
104104
packages = []
105105
for dir,subdirs,files in os.walk('IPython'):
106106
package = dir.replace(os.path.sep, '.')
107-
if any([ package.startswith('IPython.'+exc) for exc in excludes ]):
107+
if any(package.startswith('IPython.'+exc) for exc in excludes):
108108
# package is to be excluded (e.g. deathrow)
109109
continue
110110
if '__init__.py' not in files:

0 commit comments

Comments
 (0)