Skip to content

Commit

Permalink
GH-34789: [CI][Python] Update the Python versions in our nightly CI m…
Browse files Browse the repository at this point in the history
…atrix (#35548)

* Closes: #34789

Authored-by: Joris Van den Bossche <[email protected]>
Signed-off-by: Joris Van den Bossche <[email protected]>
  • Loading branch information
jorisvandenbossche authored and raulcd committed May 31, 2023
1 parent 3718c66 commit 4a1aece
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1189,24 +1189,24 @@ tasks:
image: conda-python
{% endfor %}

test-conda-python-3.8-hypothesis:
test-conda-python-3.11-hypothesis:
ci: github
template: docker-tests/github.linux.yml
params:
env:
PYTHON: 3.8
PYTHON: 3.11
HYPOTHESIS_PROFILE: ci
PYARROW_TEST_HYPOTHESIS: ON
# limit to execute hypothesis tests only
PYTEST_ARGS: "-m hypothesis"
image: conda-python-pandas

test-conda-python-3.9-substrait:
test-conda-python-3.10-substrait:
ci: github
template: docker-tests/github.linux.yml
params:
env:
PYTHON: "3.9"
PYTHON: "3.10"
image: conda-python-substrait

test-debian-11-python-3:
Expand Down Expand Up @@ -1466,11 +1466,11 @@ tasks:

############################## Integration tests ############################

{% for python_version, pandas_version, numpy_version, cache_leaf in [("3.7", "1.0", "1.19", True),
("3.7", "latest", "latest", False),
("3.8", "latest", "latest", False),
("3.8", "nightly", "nightly", False),
("3.9", "upstream_devel", "nightly", False)] %}
{% 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", "latest", False),
("3.10", "nightly", "nightly", False),
("3.11", "upstream_devel", "nightly", False)] %}
test-conda-python-{{ python_version }}-pandas-{{ pandas_version }}:
ci: github
template: docker-tests/github.linux.yml
Expand All @@ -1491,25 +1491,25 @@ tasks:
{% endfor %}

{% for dask_version in ["latest", "upstream_devel"] %}
test-conda-python-3.9-dask-{{ dask_version }}:
test-conda-python-3.11-dask-{{ dask_version }}:
ci: github
template: docker-tests/github.linux.yml
params:
env:
PYTHON: 3.9
PYTHON: 3.11
DASK: "{{ dask_version }}"
# use the latest dask release, so prevent reusing any cached layers
flags: --no-leaf-cache
image: conda-python-dask
{% endfor %}

{% for hdfs_version in ["2.9.2", "3.2.1"] %}
test-conda-python-3.7-hdfs-{{ hdfs_version }}:
test-conda-python-3.10-hdfs-{{ hdfs_version }}:
ci: github
template: docker-tests/github.linux.yml
params:
env:
PYTHON: 3.7
PYTHON: "3.10"
HDFS: "{{ hdfs_version }}"
image: conda-python-hdfs
{% endfor %}
Expand Down

0 comments on commit 4a1aece

Please sign in to comment.