From deb83bff1d2340cb45771cfd24cf3b322ec78a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Cumplido?= Date: Mon, 16 Sep 2024 11:44:33 +0200 Subject: [PATCH] Use exact numpy version as 1.19 does not have Python 3.9 support --- .github/workflows/python.yml | 2 +- dev/tasks/tasks.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 1b0ad7991b31d..0b87b2fbe9948 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -79,7 +79,7 @@ jobs: title: AMD64 Conda Python 3.9 Pandas 1.1 python: 3.9 pandas: "1.1" - numpy: 1.19 + numpy: 1.19.5 - name: conda-python-3.11-pandas-latest cache: conda-python-3.11 image: conda-python-pandas diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml index ca130a389a5b4..66fda64c1bcf9 100644 --- a/dev/tasks/tasks.yml +++ b/dev/tasks/tasks.yml @@ -1541,7 +1541,7 @@ tasks: ############################## Integration tests ############################ -{% for python_version, pandas_version, numpy_version, cache_leaf in [("3.9", "1.1", "1.19", True), +{% for python_version, pandas_version, numpy_version, cache_leaf in [("3.9", "1.1", "1.19.5", True), ("3.10", "latest", "latest", False), ("3.11", "latest", "1.26", False), ("3.11", "latest", "latest", False),