Skip to content

Commit 18e5153

Browse files
committed
Try pip
1 parent 03d1aee commit 18e5153

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

.github/actions/build_pandas/action.yml

+3-17
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,13 @@ runs:
1010
mamba list
1111
mamba info | grep -Ei 'environment.+:' | grep -qEiv 'environment.+:.+none'
1212
fi
13-
pip list
14-
python --version
13+
python -VV
14+
pip -VV
1515
shell: bash -el {0}
1616

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-
2517
- 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
3119
shell: bash -el {0}
32-
env:
33-
TMP: "${{ steps.mktemp.outputs.tmpdir }}"
3420

3521
- name: Build Version
3622
run: pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd

0 commit comments

Comments
 (0)