Skip to content

Commit 4c5db2e

Browse files
authored
CI: Pin pyarrow smaller than 10 (#50055)
* fixup sed * CI: Pin pyarrow smaller than 10 * try fixing syntax Co-authored-by: MarcoGorelli <>
1 parent 8da8743 commit 4c5db2e

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
@@ -42,7 +42,7 @@ dependencies:
4242
- psycopg2
4343
- pymysql
4444
- pytables
45-
- pyarrow
45+
- pyarrow<10
4646
- pyreadstat
4747
- python-snappy
4848
- pyxlsb

ci/deps/actions-38-downstream_compat.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies:
4141
- odfpy
4242
- pandas-gbq
4343
- psycopg2
44-
- pyarrow
44+
- pyarrow<10
4545
- pymysql
4646
- pyreadstat
4747
- pytables

ci/deps/actions-38.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies:
4040
- odfpy
4141
- pandas-gbq
4242
- psycopg2
43-
- pyarrow
43+
- pyarrow<10
4444
- pymysql
4545
- pyreadstat
4646
- pytables

ci/deps/actions-39.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies:
4141
- pandas-gbq
4242
- psycopg2
4343
- pymysql
44-
- pyarrow
44+
- pyarrow<10
4545
- pyreadstat
4646
- pytables
4747
- python-snappy

ci/deps/circle-38-arm64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies:
4040
- odfpy
4141
- pandas-gbq
4242
- psycopg2
43-
- pyarrow
43+
- pyarrow<10
4444
- pymysql
4545
# Not provided on ARM
4646
#- pyreadstat

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dependencies:
4242
- odfpy
4343
- pandas-gbq
4444
- psycopg2
45-
- pyarrow
45+
- pyarrow<10
4646
- pymysql
4747
- pyreadstat
4848
- pytables

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ openpyxl
3131
odfpy
3232
pandas-gbq
3333
psycopg2-binary
34-
pyarrow
34+
pyarrow<10
3535
pymysql
3636
pyreadstat
3737
tables

0 commit comments

Comments
 (0)