From 5252090c1733dbdae8152c765838b1ebea0a0a6a Mon Sep 17 00:00:00 2001 From: Dane Pitkin Date: Wed, 19 Jun 2024 05:44:01 -0400 Subject: [PATCH] GH-42190: [Python] Add CI job for Numpy 1.X (#42189) ### Rationale for this change Numpy 2.0 released and most CI jobs test Numpy's latest version. Let's ensure Numpy 1.X continues to work with pandas in our integration testing. ### What changes are included in this PR? * Add CI job to test integration with latest pandas and 1.X numpy ### Are these changes tested? Yes, in CI ### Are there any user-facing changes? No * GitHub Issue: #42190 Authored-by: Dane Pitkin Signed-off-by: Joris Van den Bossche --- dev/tasks/tasks.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml index 2d84751d0f363..61df283960ccf 100644 --- a/dev/tasks/tasks.yml +++ b/dev/tasks/tasks.yml @@ -1494,10 +1494,11 @@ tasks: {% for python_version, pandas_version, numpy_version, cache_leaf in [("3.8", "1.0", "1.19", True), ("3.9", "latest", "latest", False), + ("3.10", "latest", "1.26", False), ("3.10", "latest", "latest", False), ("3.10", "nightly", "nightly", False), ("3.11", "upstream_devel", "nightly", False)] %} - test-conda-python-{{ python_version }}-pandas-{{ pandas_version }}: + test-conda-python-{{ python_version }}-pandas-{{ pandas_version }}-numpy-{{ numpy_version }}: ci: github template: docker-tests/github.linux.yml params: