Skip to content

Commit d37ed46

Browse files
authored
fix conda release worlflow (#7272)
fix conda release
1 parent c4e2604 commit d37ed46

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/conda/meta.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ requirements:
1515
- python
1616
- pip
1717
- numpy >=1.17
18-
- pyarrow >=8.0.0
18+
- pyarrow >=15.0.0
1919
- python-xxhash
2020
- dill
2121
- pandas
@@ -31,8 +31,7 @@ requirements:
3131
- python
3232
- pip
3333
- numpy >=1.17
34-
- pyarrow >=8.0.0
35-
- pyarrow-hotfix
34+
- pyarrow >=15.0.0
3635
- python-xxhash
3736
- dill
3837
- pandas

.github/workflows/release-conda.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
build_and_package:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414
defaults:
1515
run:
1616
shell: bash -l {0}
@@ -20,13 +20,13 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Install miniconda
23-
uses: conda-incubator/setup-miniconda@v3
23+
uses: conda-incubator/setup-miniconda@v2
2424
with:
2525
auto-update-conda: true
2626
auto-activate-base: false
2727
activate-environment: "build-datasets"
2828
python-version: 3.8
29-
channels: huggingface,conda-forge
29+
channels: huggingface
3030

3131
- name: Setup conda env
3232
run: |

0 commit comments

Comments
 (0)