Skip to content

Commit 73b5c67

Browse files
committed
Remove C version of _concat_date_cols
1 parent 7074b96 commit 73b5c67

File tree

3 files changed

+0
-376
lines changed

3 files changed

+0
-376
lines changed

pandas/_libs/tslibs/src/datetime/datehelpers.c

-360
This file was deleted.

pandas/io/parsers.py

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
import numpy as np
1616

17-
#from pandas._libs.datehelpers import concat_date_cols as _concat_date_cols
1817
from pandas._libs.lib import _concat_date_cols
1918
import pandas._libs.lib as lib
2019
import pandas._libs.ops as libops

setup.py

-15
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ def initialize_options(self):
238238
ujson_lib = pjoin(base, 'ujson', 'lib')
239239
self._clean_exclude = [pjoin(dt, 'np_datetime.c'),
240240
pjoin(dt, 'np_datetime_strings.c'),
241-
pjoin(dt, 'datehelpers.c'),
242241
pjoin(parser, 'tokenizer.c'),
243242
pjoin(parser, 'io.c'),
244243
pjoin(ujson_python, 'ujson.c'),
@@ -748,20 +747,6 @@ def srcpath(name=None, suffix='.pyx', subdir='src'):
748747
extensions.append(_move_ext)
749748

750749
# ----------------------------------------------------------------------
751-
# datehelpers
752-
datehelpers_sources = [
753-
'pandas/_libs/tslibs/src/datetime/datehelpers.c',
754-
'pandas/_libs/src/parser/tokenizer.c'
755-
]
756-
datehelpers_ext = Extension('pandas._libs.datehelpers',
757-
depends=[
758-
'pandas/_libs/src/parser/tokenizer.h'
759-
],
760-
sources=datehelpers_sources,
761-
include_dirs=['pandas/_libs/src/klib/'],
762-
extra_compile_args=extra_compile_args,
763-
define_macros=macros)
764-
extensions.append(datehelpers_ext)
765750

766751

767752
# The build cache system does string matching below this point.

0 commit comments

Comments
 (0)