Skip to content

Commit cf213bd

Browse files
author
=
committed
remove bodo from env file for window CI
1 parent 539c6ba commit cf213bd

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

.github/actions/setup-conda/action.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,24 @@ inputs:
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
69
runs:
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:

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

ci/deps/actions-310.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)