File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 33 environment-file :
44 description : Conda environment file to use.
55 default : environment.yml
6+ os :
7+ description : The operating system to assume when creating Conda.
8+ default : not specified
69runs :
710 using : composite
811 steps :
12+ # Remove bodo from Window's environment for now until it supports Windows.
13+ - name : Remove bodo on Windows
14+ if : ${{ inputs.os == 'windows-latest' }}
15+ run : |
16+
17+ sed '/bodo/d' "$ENVIRONMENT_FILE" > tmp.txt
18+ cat tmp.txt > "$ENVIRONMENT_FILE"
19+ rm tmp.txt
20+ env :
21+ ENVIRONMENT_FILE : ${{ inputs.environment-file }}
22+ shell : bash -el {0}
23+
924 - name : Install ${{ inputs.environment-file }}
1025 uses : mamba-org/setup-micromamba@v1
1126 with :
Original file line number Diff line number Diff line change @@ -212,6 +212,7 @@ jobs:
212212 uses : ./.github/actions/setup-conda
213213 with :
214214 environment-file : ci/deps/${{ matrix.env_file }}
215+ os : ${{ matrix.os }}
215216
216217 - name : Build Pandas
217218 uses : ./.github/actions/build_pandas
Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ dependencies:
6060 - zstandard>=0.19.0
6161
6262 - pip :
63- - bodo>=2025.1; platform_system != "Windows"
6463 - adbc-driver-postgresql>=0.10.0
6564 - adbc-driver-sqlite>=0.8.0
6665 - tzdata>=2022.7
You can’t perform that action at this time.
0 commit comments