Skip to content

Commit 146e36d

Browse files
committed
fix: Deprecate 3.7 wheels and fix verification workflow (#2934)
* Remove 3.7 wheels Signed-off-by: Kevin Zhang <[email protected]> * Fix Signed-off-by: Kevin Zhang <[email protected]> * Fix Signed-off-by: Kevin Zhang <[email protected]> * Fix Signed-off-by: Kevin Zhang <[email protected]>
1 parent 9840c1b commit 146e36d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build_wheels.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,18 @@ jobs:
187187
cd dist/
188188
pip install wheel
189189
for f in *.whl; do pip install $f || true; done
190+
- name: Install apache-arrow on ubuntu
191+
if: ${{ matrix.from-source && matrix.os == 'ubuntu-latest' }}
192+
run: |
193+
sudo apt update
194+
sudo apt install -y -V ca-certificates lsb-release wget
195+
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
196+
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
197+
sudo apt update
198+
sudo apt install -y -V libarrow-dev
199+
- name: Install apache-arrow on macos
200+
if: ${{ matrix.from-source && matrix.os == 'macos-10.15' && matrix.python-version != '3.10' }}
201+
run: brew install apache-arrow
190202
- name: Install dist with go
191203
if: ${{ matrix.from-source && (matrix.python-version != '3.10' || matrix.os == 'ubuntu-latest')}}
192204
env:

0 commit comments

Comments
 (0)