File tree 6 files changed +11
-112
lines changed
6 files changed +11
-112
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ variables:
22
22
PANDAS_CI : 1
23
23
24
24
jobs :
25
- # Mac and Linux use the same template
26
25
- template : ci/azure/posix.yml
27
26
parameters :
28
27
name : macOS
Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ jobs:
10
10
strategy :
11
11
matrix :
12
12
py38 :
13
- ENV_FILE : ci/deps/azure-macos -38.yaml
13
+ ENV_FILE : ci/deps/actions -38.yaml
14
14
CONDA_PY : " 38"
15
15
16
16
py39 :
17
- ENV_FILE : ci/deps/azure-macos -39.yaml
17
+ ENV_FILE : ci/deps/actions -39.yaml
18
18
CONDA_PY : " 39"
19
19
20
20
py310 :
21
- ENV_FILE : ci/deps/azure-macos -310.yaml
21
+ ENV_FILE : ci/deps/actions -310.yaml
22
22
CONDA_PY : " 310"
23
23
24
24
steps :
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 66
66
echo " mamba env create -q --file=${ENV_FILE} "
67
67
time mamba env create -q --file=" ${ENV_FILE} "
68
68
69
+ # From pyarrow on MacOS
70
+ # ImportError: 2): Library not loaded: @rpath/libssl.1.1.dylib
71
+ # Referenced from: /Users/runner/miniconda3/envs/pandas-dev/lib/libthrift.0.13.0.dylib
72
+ # Reason: image not found
73
+ if [[ " $( uname) " == ' Darwin' ]]; then
74
+ echo " Update pyarrow for pyarrow on MacOS"
75
+ conda install -n pandas-dev -c conda-forge --no-update-deps pyarrow=6
76
+ fi
69
77
70
78
if [[ " $BITS32 " == " yes" ]]; then
71
79
# activate 32-bit compiler
You can’t perform that action at this time.
0 commit comments