Skip to content

Commit

Permalink
GH-42190: [Python] Add CI job for Numpy 1.X (#42189)
Browse files Browse the repository at this point in the history
### 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 <[email protected]>
Signed-off-by: Joris Van den Bossche <[email protected]>
  • Loading branch information
danepitkin authored Jun 19, 2024
1 parent 6bcb418 commit 5252090
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5252090

Please sign in to comment.