Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: round on object columns no longer raises a TypeError #61206

Open
2 of 3 tasks
MT407 opened this issue Mar 31, 2025 · 2 comments
Open
2 of 3 tasks

BUG: round on object columns no longer raises a TypeError #61206

MT407 opened this issue Mar 31, 2025 · 2 comments
Labels
Bug Error Reporting Incorrect or improved errors from pandas Needs Triage Issue that has not been reviewed by a pandas team member Numeric Operations Arithmetic, Comparison, and Logical operations Regression Functionality that used to work in a prior pandas version
Milestone

Comments

@MT407
Copy link

MT407 commented Mar 31, 2025

Pandas version checks

  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of pandas.

  • I have confirmed this bug exists on the main branch of pandas.

Reproducible Example

import pandas as pd
df=pd.DataFrame(data=['foo'],columns=['bar'])
df.loc[0,'bar']=0.2
df['bar'].round()

Out[4]: 
0    0.2

Issue Description

pd.Series.round() appears to have changed behaviour in 2.2.3 compared to 2.1.4.
In previous versions, attempting to round a column with "object" dtype would raise a TypeError. In 2.2.3, round now silently returns the same column, without applying any rounding.

I'm not sure if there is some underlying change that causes this behaviour, but together with the removal of downcasting from a variety of methods (ffill, replace, fillna,...) this change in behaviour seems dangerous without any warnings.

Expected Behavior

import pandas as pd
df=pd.DataFrame(data=['foo'],columns=['bar'])
df.loc[0,'bar']=0.2
df['bar'].round()

TypeError: loop of ufunc does not support argument 0 of type float which has no callable rint method

Installed Versions

INSTALLED VERSIONS

commit : 0691c5c
python : 3.9.18
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.19045
machine : AMD64
processor : Intel64 Family 6 Model 142 Stepping 12, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : English_United Kingdom.1252
pandas : 2.2.3
numpy : 1.26.3
pytz : 2023.3.post1
dateutil : 2.8.2
pip : 23.3.1
Cython : None
sphinx : None
IPython : 8.15.0
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : 4.12.2
blosc : None
bottleneck : 1.3.6
dataframe-api-compat : None
fastparquet : None
fsspec : None
html5lib : None
hypothesis : None
gcsfs : None
jinja2 : 3.1.2
lxml.etree : 4.9.3
matplotlib : 3.8.0
numba : 0.60.0
numexpr : 2.8.7
odfpy : None
openpyxl : 3.1.0
pandas_gbq : None
psycopg2 : None
pymysql : None
pyarrow : None
pyreadstat : None
pytest : 7.4.0
python-calamine : None
pyxlsb : None
s3fs : None
scipy : 1.11.4
sqlalchemy : None
tables : None
tabulate : None
xarray : 2023.12.0
xlrd : 2.0.1
xlsxwriter : 3.1.1
zstandard : 0.19.0
tzdata : 2023.3
qtpy : None
pyqt5 : None

@MT407 MT407 added Bug Needs Triage Issue that has not been reviewed by a pandas team member labels Mar 31, 2025
@PedroM4rques
Copy link

PedroM4rques commented Mar 31, 2025

If it's just to raise an TypeError i have already the code, so please assign me after the triage.

@rhshadrach rhshadrach added the Regression Functionality that used to work in a prior pandas version label Mar 31, 2025
@rhshadrach rhshadrach changed the title BUG: BUG: round on object columns no longer raises a TypeError Mar 31, 2025
@rhshadrach rhshadrach added Numeric Operations Arithmetic, Comparison, and Logical operations Error Reporting Incorrect or improved errors from pandas labels Mar 31, 2025
@rhshadrach
Copy link
Member

Result of a git bisect points at #56767; cc @phofl

@rhshadrach rhshadrach added this to the 2.3 milestone Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Error Reporting Incorrect or improved errors from pandas Needs Triage Issue that has not been reviewed by a pandas team member Numeric Operations Arithmetic, Comparison, and Logical operations Regression Functionality that used to work in a prior pandas version
Projects
None yet
Development

No branches or pull requests

3 participants