We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9deded commit 14923ddCopy full SHA for 14923dd
.github/workflows/ci.yaml
@@ -19,7 +19,12 @@ jobs:
19
matrix:
20
python_version: ["3.8", "3.10"]
21
install_type: [standard, dev, minimal]
22
-
+ exclude:
23
+ # It looks like pip installing our minimal pandas version is very slow under Python 3.10,
24
+ # most likely, because it involves explicit compilation. Excluding it for now because
25
+ # testing old library versions against a modern Python is a rather rare use case.
26
+ - python_version: "3.10"
27
+ install_type: minimal
28
env:
29
INSTALL_TYPE: ${{ matrix.install_type }}
30
0 commit comments