Skip to content

Commit d866dfc

Browse files
authored
Merge main
1 parent 8080e79 commit d866dfc

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

.github/actions/build_pandas/action.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,16 @@ runs:
55
steps:
66
- name: Environment Detail
77
run: |
8-
if which mamba 2>/dev/null; then
9-
mamba info
10-
mamba list
11-
# Make sure we have the correct environment activated
12-
mamba info | grep -Ei 'environment.+:' | grep -qEiv 'environment.+:.+none'
13-
fi
14-
python -VV
15-
which pip
16-
pip list
8+
conda info
9+
conda list
10+
# Make sure we have the correct environment activated
11+
conda info | grep -Ei 'environment.+:' | grep -qEiv 'environment.+:.+none'
1712
shell: bash -el {0}
1813

1914
- name: Build Pandas
2015
run: |
21-
time python setup.py build_ext -v -j $N_JOBS
22-
pip install -v -e . --no-build-isolation --no-use-pep517 --no-index
16+
python setup.py build_ext -j $N_JOBS
17+
python -m pip install -e . --no-build-isolation --no-use-pep517 --no-index
2318
shell: bash -el {0}
2419
env:
2520
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873

0 commit comments

Comments
 (0)