Skip to content

Commit a3d52fc

Browse files
committed
Fix minimum pandas and numpy versions with Py 3.10 support
1 parent 1908395 commit a3d52fc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ jobs:
7878
image: conda-python
7979
title: AMD64 Conda Python 3.11 Without Pandas
8080
python: "3.11"
81-
- name: conda-python-3.10-pandas-1.1.3
81+
- name: conda-python-3.10-pandas-1.3.4
8282
cache: conda-python-3.10
8383
image: conda-python-pandas
84-
title: AMD64 Conda Python 3.10 Pandas 1.1.3
84+
title: AMD64 Conda Python 3.10 Pandas 1.3.4
8585
python: "3.10"
86-
pandas: "1.1.3"
87-
numpy: 1.19.5
86+
pandas: "1.3.4"
87+
numpy: 1.21.2
8888
- name: conda-python-3.12-pandas-latest
8989
cache: conda-python-3.12
9090
image: conda-python-pandas

dev/tasks/tasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1118,7 +1118,7 @@ tasks:
11181118

11191119
############################## Integration tests ############################
11201120

1121-
{% for python_version, pandas_version, numpy_version, cache_leaf in [("3.10", "1.1.3", "1.19.5", True),
1121+
{% for python_version, pandas_version, numpy_version, cache_leaf in [("3.10", "1.3.4", "1.21.2", True),
11221122
("3.11", "latest", "latest", False),
11231123
("3.12", "latest", "1.26", False),
11241124
("3.12", "latest", "latest", False),

0 commit comments

Comments
 (0)