File tree 4 files changed +5
-162
lines changed 4 files changed +5
-162
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ Numeric decoder derived from from TCL library
44
44
#include <numpy/arrayobject.h> // NOLINT(build/include_order)
45
45
#include <numpy/arrayscalars.h> // NOLINT(build/include_order)
46
46
#include <numpy/npy_math.h> // NOLINT(build/include_order)
47
- #include <numpy_helper.h> // NOLINT(build/include_order)
48
47
#include <stdio.h> // NOLINT(build/include_order)
49
48
#include <ultrajson.h> // NOLINT(build/include_order)
50
49
#include <np_datetime.h> // NOLINT(build/include_order)
@@ -60,6 +59,8 @@ static PyTypeObject *cls_series;
60
59
static PyTypeObject * cls_index ;
61
60
static PyTypeObject * cls_nat ;
62
61
62
+ npy_int64 get_nat (void ) { return NPY_MIN_INT64 ; }
63
+
63
64
typedef void * (* PFN_PyTypeToJSON )(JSOBJ obj , JSONTypeContext * ti ,
64
65
void * outValue , size_t * _outLen );
65
66
Original file line number Diff line number Diff line change @@ -694,10 +694,9 @@ def pxd(name):
694
694
'pandas/_libs/src/ujson/lib/ultrajsonenc.c' ,
695
695
'pandas/_libs/src/ujson/lib/ultrajsondec.c' ] +
696
696
np_datetime_sources ),
697
- include_dirs = (['pandas/_libs/src/ujson/python' ,
698
- 'pandas/_libs/src/ujson/lib' ,
699
- 'pandas/_libs/src/datetime' ] +
700
- common_include ),
697
+ include_dirs = ['pandas/_libs/src/ujson/python' ,
698
+ 'pandas/_libs/src/ujson/lib' ,
699
+ 'pandas/_libs/src/datetime' ],
701
700
extra_compile_args = (['-D_GNU_SOURCE' ] +
702
701
extra_compile_args ))
703
702
You can’t perform that action at this time.
0 commit comments