Skip to content

Commit 38a69e6

Browse files
MarcoGorelliphofl
andauthored
Auto backport of pr 50055 on 1.5.x (#50119)
Backport PR #50055: CI: Pin pyarrow smaller than 10 Co-authored-by: Patrick Hoefler <[email protected]>
1 parent ef4fd10 commit 38a69e6

8 files changed

+8
-8
lines changed

.github/actions/setup-conda/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runs:
1818
- name: Set Arrow version in ${{ inputs.environment-file }} to ${{ inputs.pyarrow-version }}
1919
run: |
2020
grep -q ' - pyarrow' ${{ inputs.environment-file }}
21-
sed -i"" -e "s/ - pyarrow/ - pyarrow=${{ inputs.pyarrow-version }}/" ${{ inputs.environment-file }}
21+
sed -i"" -e "s/ - pyarrow<10/ - pyarrow=${{ inputs.pyarrow-version }}/" ${{ inputs.environment-file }}
2222
cat ${{ inputs.environment-file }}
2323
shell: bash
2424
if: ${{ inputs.pyarrow-version }}

ci/deps/actions-310.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies:
3939
- psycopg2
4040
- pymysql
4141
- pytables
42-
- pyarrow
42+
- pyarrow<10
4343
- pyreadstat
4444
- python-snappy
4545
- pyxlsb

ci/deps/actions-38-downstream_compat.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies:
3838
- odfpy
3939
- pandas-gbq
4040
- psycopg2
41-
- pyarrow
41+
- pyarrow<10
4242
- pymysql
4343
- pyreadstat
4444
- pytables

ci/deps/actions-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies:
3737
- odfpy
3838
- pandas-gbq
3939
- psycopg2
40-
- pyarrow
40+
- pyarrow<10
4141
- pymysql
4242
- pyreadstat
4343
- pytables

ci/deps/actions-39.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies:
3838
- pandas-gbq
3939
- psycopg2
4040
- pymysql
41-
- pyarrow
41+
- pyarrow<10
4242
- pyreadstat
4343
- pytables
4444
- python-snappy

ci/deps/circle-38-arm64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies:
3737
- odfpy
3838
- pandas-gbq
3939
- psycopg2
40-
- pyarrow
40+
- pyarrow<10
4141
- pymysql
4242
# Not provided on ARM
4343
#- pyreadstat

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies:
3838
- odfpy
3939
- pandas-gbq
4040
- psycopg2
41-
- pyarrow
41+
- pyarrow<10
4242
- pymysql
4343
- pyreadstat
4444
- pytables

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ openpyxl
2929
odfpy
3030
pandas-gbq
3131
psycopg2
32-
pyarrow
32+
pyarrow<10
3333
pymysql
3434
pyreadstat
3535
tables

0 commit comments

Comments
 (0)