Skip to content

Commit

Permalink
Add missing file to _pyxfiles, delete commented-out (pandas-dev#17712)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel authored and alanbato committed Nov 10, 2017
1 parent 7c0c27f commit 0ba7c2b
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@ class CheckSDist(sdist_class):
'pandas/_libs/window.pyx',
'pandas/_libs/sparse.pyx',
'pandas/_libs/parsers.pyx',
'pandas/_libs/tslibs/strptime.pyx',
'pandas/_libs/tslibs/timezones.pyx',
'pandas/_libs/tslibs/frequencies.pyx',
'pandas/_libs/tslibs/parsing.pyx',
Expand All @@ -349,14 +350,6 @@ class CheckSDist(sdist_class):
def initialize_options(self):
sdist_class.initialize_options(self)

'''
self._pyxfiles = []
for root, dirs, files in os.walk('pandas'):
for f in files:
if f.endswith('.pyx'):
self._pyxfiles.append(pjoin(root, f))
'''

def run(self):
if 'cython' in cmdclass:
self.run_command('cython')
Expand Down

0 comments on commit 0ba7c2b

Please sign in to comment.