File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed
.github/actions/build_pandas Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 5
5
steps :
6
6
- name : Environment Detail
7
7
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'
17
12
shell : bash -el {0}
18
13
19
14
- name : Build Pandas
20
15
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
23
18
shell : bash -el {0}
24
19
env :
25
20
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
You can’t perform that action at this time.
0 commit comments