We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03b5cca commit bb43098Copy full SHA for bb43098
setup.py
@@ -341,6 +341,7 @@ class CheckSDist(sdist_class):
341
'pandas/_libs/window.pyx',
342
'pandas/_libs/sparse.pyx',
343
'pandas/_libs/parsers.pyx',
344
+ 'pandas/_libs/tslibs/strptime.pyx',
345
'pandas/_libs/tslibs/timezones.pyx',
346
'pandas/_libs/tslibs/frequencies.pyx',
347
'pandas/_libs/tslibs/parsing.pyx',
@@ -349,14 +350,6 @@ class CheckSDist(sdist_class):
349
350
def initialize_options(self):
351
sdist_class.initialize_options(self)
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
-
360
def run(self):
361
if 'cython' in cmdclass:
362
self.run_command('cython')
0 commit comments