Skip to content

Commit 0425af5

Browse files
authored
Review feedback
1 parent 719fa90 commit 0425af5

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/actions/build_pandas/action.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ runs:
88
if which mamba 2>/dev/null; then
99
mamba info
1010
mamba list
11+
# Make sure we have the correct environment activated
1112
mamba info | grep -Ei 'environment.+:' | grep -qEiv 'environment.+:.+none'
1213
fi
1314
python -VV
14-
which python
1515
which pip
1616
pip list
1717
shell: bash -el {0}
@@ -25,9 +25,6 @@ runs:
2525
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
2626
N_JOBS: ${{ runner.os == 'Windows' && 1 || 3 }}
2727

28-
- name: Build Version
29-
run: pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd
28+
- name: Show dependency versions
29+
run: python -c "import pandas; pandas.show_versions()"
3030
shell: bash -el {0}
31-
env:
32-
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
33-
N_JOBS: ${{ runner.os == 'Windows' && 1 || 2 }}

0 commit comments

Comments
 (0)