File tree 1 file changed +3
-17
lines changed
.github/actions/build_pandas
1 file changed +3
-17
lines changed Original file line number Diff line number Diff line change @@ -10,27 +10,13 @@ runs:
10
10
mamba list
11
11
mamba info | grep -Ei 'environment.+:' | grep -qEiv 'environment.+:.+none'
12
12
fi
13
- pip list
14
- python --version
13
+ python -VV
14
+ pip -VV
15
15
shell : bash -el {0}
16
16
17
- - name : Fix Windows temporary directory
18
- # On Windows, for some reason the default temporary directory used by distutils
19
- # may become read-only at some point. Work around by having a private tempdir.
20
- id : mktemp
21
- run : echo "::set-output name=tmpdir::$(cygpath -w $(mktemp -d))"
22
- shell : bash
23
- if : ${{ runner.os == 'Windows' }}
24
-
25
17
- name : Build Pandas
26
- run : |
27
- which python
28
- which pip
29
- time python setup.py build_ext -v -j 3
30
- pip install -v -e . --no-build-isolation --no-use-pep517 --no-index
18
+ run : pip install -v -e . --no-build-isolation --no-use-pep517 --no-index --global-option=build_ext --global-option=-j3
31
19
shell : bash -el {0}
32
- env :
33
- TMP : " ${{ steps.mktemp.outputs.tmpdir }}"
34
20
35
21
- name : Build Version
36
22
run : pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd
You can’t perform that action at this time.
0 commit comments