Skip to content

Commit ffa86c5

Browse files
jbrockmendeljreback
authored andcommitted
Add missing file to _pyxfiles, delete commented-out (#17712)
1 parent 00e52ab commit ffa86c5

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

setup.py

+1-8
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,7 @@ class CheckSDist(sdist_class):
341341
'pandas/_libs/window.pyx',
342342
'pandas/_libs/sparse.pyx',
343343
'pandas/_libs/parsers.pyx',
344+
'pandas/_libs/tslibs/strptime.pyx',
344345
'pandas/_libs/tslibs/timezones.pyx',
345346
'pandas/_libs/tslibs/frequencies.pyx',
346347
'pandas/_libs/tslibs/parsing.pyx',
@@ -349,14 +350,6 @@ class CheckSDist(sdist_class):
349350
def initialize_options(self):
350351
sdist_class.initialize_options(self)
351352

352-
'''
353-
self._pyxfiles = []
354-
for root, dirs, files in os.walk('pandas'):
355-
for f in files:
356-
if f.endswith('.pyx'):
357-
self._pyxfiles.append(pjoin(root, f))
358-
'''
359-
360353
def run(self):
361354
if 'cython' in cmdclass:
362355
self.run_command('cython')

0 commit comments

Comments
 (0)