zhengruifeng commented on code in PR #47965:
URL: https://github.com/apache/spark/pull/47965#discussion_r1749491496
##########
.github/workflows/build_and_test.yml:
##########
@@ -723,7 +723,7 @@ jobs:
# See 'ipython_genutils' in SPARK-38517
# See 'docutils<0.18.0' in SPARK-39421
python3.9 -m pip install 'sphinx==4.5.0' mkdocs
'pydata_sphinx_theme>=0.13' sphinx-copybutton nbsphinx numpydoc jinja2
markupsafe 'pyzmq<24.0.0' \
- ipython ipython_genutils sphinx_plotly_directive 'numpy>=1.20.0'
pyarrow pandas 'plotly>=4.8' 'docutils<0.18.0' \
+ ipython ipython_genutils sphinx_plotly_directive 'numpy==1.26.4'
pyarrow pandas 'plotly>=4.8' 'docutils<0.18.0' \
Review Comment:
another example:
1.26.4
```
In [1]: import pandas as pd
In [2]: df = pd.DataFrame([[0, 2, 3], [0, 4, 1], [10, 20, 30]], index=[4, 5,
6], columns=['A', 'B', 'C'])
In [3]: df.at[4, 'B']
2
```
2.1.0
```
In [1]: import pandas as pd
In [2]: df = pd.DataFrame([[0, 2, 3], [0, 4, 1], [10, 20, 30]], index=[4, 5,
6], columns=['A', 'B', 'C'])
In [3]: df.at[4, 'B']
Out[3]: np.int64(2)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]