jorisvandenbossche commented on code in PR #50769:
URL: https://github.com/apache/arrow/pull/50769#discussion_r3729061241
##########
.github/workflows/python.yml:
##########
@@ -79,12 +79,12 @@ jobs:
image: conda-python
title: AMD64 Conda Python 3.12 Without Pandas
python: "3.12"
- - name: conda-python-3.11-pandas-2.0.3
+ - name: conda-python-3.11-pandas-2.2.2-numpy-2.0.2
image: conda-python-pandas
- title: AMD64 Conda Python 3.11 Pandas 2.0.3
+ title: AMD64 Conda Python 3.11 Pandas 2.2.2 NumPy 2.0.2
python: "3.11"
- pandas: "2.0.3"
- numpy: "1.23.2"
+ pandas: "2.2.2"
Review Comment:
That should be fine I think (well, it is also unavoidable if we want to only
support numpy >= 2)
##########
dev/tasks/tasks.yml:
##########
@@ -727,9 +727,9 @@ tasks:
############################## Integration tests ############################
-{% for python_version, pandas_version, numpy_version, cache_leaf in [("3.11",
"2.0.3", "1.23.2", True),
+{% for python_version, pandas_version, numpy_version, cache_leaf in [("3.11",
"2.2.2", "2.0.2", True),
("3.12",
"latest", "latest", False),
- ("3.13",
"latest", "1.26.2", False),
+ ("3.13",
"latest", "2.1.0", False),
Review Comment:
```suggestion
("3.13", "latest", "2.1.3", False),
```
(seems more logical to test with the latest bug-fix release from a certain
series?)
--
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]