File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
.github/actions/build_pandas Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 8
8
if which mamba 2>/dev/null; then
9
9
mamba info
10
10
mamba list
11
+ # Make sure we have the correct environment activated
11
12
mamba info | grep -Ei 'environment.+:' | grep -qEiv 'environment.+:.+none'
12
13
fi
13
14
python -VV
14
- which python
15
15
which pip
16
16
pip list
17
17
shell : bash -el {0}
25
25
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
26
26
N_JOBS : ${{ runner.os == 'Windows' && 1 || 3 }}
27
27
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()"
30
30
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 }}
You can’t perform that action at this time.
0 commit comments