File tree 3 files changed +8
-2
lines changed 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2811,7 +2811,7 @@ cdef class QuarterBegin(QuarterOffset):
2811
2811
_prefix = " QS"
2812
2812
_day_opt = " start"
2813
2813
_period_dtype_code = PeriodDtypeCode.Q_DEC# 55785 Fix for QuaterBegin
2814
-
2814
+ print (_period_dtype_code)
2815
2815
2816
2816
# ----------------------------------------------------------------------
2817
2817
# Month-Based Offset Classes
Original file line number Diff line number Diff line change @@ -1543,7 +1543,7 @@ def get_engine(engine: str) -> BaseEngine:
1543
1543
raise ValueError ("engine must be one of 'auto', 'sqlalchemy'" )
1544
1544
1545
1545
1546
- class SQLDatabase (PandasSQL ):
1546
+ class SQLDatabase (PandasSQL , ** connect_kwargs ):
1547
1547
"""
1548
1548
This class enables conversion between DataFrame and SQL databases
1549
1549
using SQLAlchemy to handle DataBase abstraction.
Original file line number Diff line number Diff line change 15
15
import sys
16
16
from sysconfig import get_config_vars
17
17
18
+ from setuptools import setup
19
+ from Cython .Build import cythonize
20
+
21
+ setup (
22
+ ext_modules = cythonize ("C:\Users\harik\Documents\GitHub\pandas\pandas\_libs\t slibs\offsets.pyx" )
23
+ )
18
24
import numpy
19
25
from pkg_resources import parse_version
20
26
from setuptools import (
You can’t perform that action at this time.
0 commit comments