You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/home/sanzhar/PycharmProjects/ASSP/hello.py", line 47, in <module>
dfs: list[DataFrame[OutDataFrameModel]] = [get_summary_dataframe(dataframe=dataframe) for _ in range(10)]
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
File "/home/sanzhar/PycharmProjects/ASSP/hello.py", line 28, in get_summary_dataframe
dataframe['date'] = dataframe['time'].dt.date
~~~~~~~~~^^^^^^^^
File "/home/sanzhar/PycharmProjects/ASSP/.venv/lib/python3.13/site-packages/pandas/core/frame.py", line 4070, in __getitem__
is_mi = isinstance(self.columns, MultiIndex)
^^^^^^^^^^^^
File "properties.pyx", line 66, in pandas._libs.properties.AxisProperty.__get__
TypeError: 'NoneType' object is not subscriptable
Expected behavior
No output, No error.
Desktop:
OS: ubuntu 24.04.2 LTS
Python 3.13.2 & 3.13.0
pandera 0.22.1
to reproduce
to get an error: (.venv) uv sync --python 3.13 && python -m hello
Hi @sakosha, pandera does not officially support python 3.13 yet, there are changes in the base python typing system that pandera needs to conform to in order to make this work
Describe the bug
TypeError when using pd.concat on pandera.typing.DataFrame after merge.
Code Sample
and I get this traceback:
Expected behavior
No output, No error.
Desktop:
to reproduce
to get an error:
(.venv) uv sync --python 3.13 && python -m hello
prior to 3.13:
(.venv) uv sync --python 3.12 && python -m hello
The text was updated successfully, but these errors were encountered: