Skip to content

Commit 40b042e

Browse files
authored
fix(arrow): install pyarrow (IGinX-THU#590)
* empty res * fix insert sub * fix insert sub * fix transform * fix empty select * fix import & pysession * fix export & PySessionIT * fix PySessionIT * install pyarrow
1 parent c1cb3fc commit 40b042e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/actions/dependence/action.yml

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ runs:
8383
echo "tqdm" >> requirements.txt
8484
echo "requests" >> requirements.txt
8585
echo "torch" >> requirements.txt
86+
echo "pyarrow" >> requirements.txt
8687
8788
- if: inputs.scope=='all' && inputs.iginx-conda-flag != 'true'
8889
name: Set up Python ${{ inputs.python-version }}

.github/actions/service/freeThreadPython/action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,12 @@ runs:
106106
shell: bash
107107
run: |
108108
curl -L -O https://github.com/IGinX-THU/IGinX-resources/raw/refs/heads/main/resources/python/pandas-3.0.0.dev0+1654.g32a97a969a-cp313-cp313t-win_amd64.whl
109+
curl -L -O https://pypi.fury.io/arrow-nightlies/-/ver_1AsSYu/pyarrow-19.0.0.dev286-cp313-cp313t-win_amd64.whl#md5=3c940f7b4ffd0debaa8b23d06bc9b2ea
109110
ls -l
110111
if [ "$RUNNER_OS" == "Windows" ]; then
111112
python3.13t -m pip install numpy thrift pemjax
112113
python3.13t -m pip install pandas*.whl
114+
python3.13t -m pip install pyarrow*.whl
113115
else
114-
sudo python3.13t -m pip install pandas==2.2.3 numpy thrift pemjax
116+
sudo python3.13t -m pip install pandas==2.2.3 numpy thrift pemjax pyarrow
115117
fi

0 commit comments

Comments
 (0)