Skip to content

Commit 21c670b

Browse files
authoredSep 23, 2024··
Merge pull request #24 from zenml-io/bugfix/PRD-651-missing-load-metrics
Missing `load_metric` in `datasets`
·
2025.04.072024.09.23
2 parents cf021ce + dba7852 commit 21c670b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
 

‎.github/actions/nlp_template_test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ runs:
8282
UV_HTTP_TIMEOUT: '1500'
8383
run: |
8484
uv pip install --system -r ./local_checkout/all-requirements.txt
85-
uv pip install --system accelerate torchvision
85+
uv pip install --system torchvision
8686
8787
- name: Run pytests
8888
shell: bash

‎.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
matrix:
4141
stack-name: [local]
4242
os: [windows-latest, ubuntu-latest, macos-13]
43-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
43+
python-version: ["3.9", "3.10", "3.11", "3.12"]
4444
env:
4545
ZENML_DEBUG: true
4646
ZENML_ANALYTICS_OPT_IN: false
@@ -56,5 +56,5 @@ jobs:
5656
with:
5757
stack-name: ${{ matrix.stack-name }}
5858
python-version: ${{ matrix.python-version }}
59-
ref-zenml: ${{ inputs.ref-zenml || 'feature/PRD-566-dependency-cleanup' }}
59+
ref-zenml: ${{ inputs.ref-zenml || 'develop' }}
6060
ref-template: ${{ inputs.ref-template || github.ref }}

‎requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
copier
22
jinja2-time
33
pyyaml-include<2.0
4+
datasets>=2.12.0,<3.0.0

‎template/config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ settings:
2626
- mlflow
2727
- discord
2828
requirements:
29-
- accelerate
3029
- zenml[server]
3130

3231
extra:

‎template/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
torchvision
2-
accelerate
32
gradio
43
zenml[server]>=0.56.3
4+
datasets>=2.12.0,<3.0.0

0 commit comments

Comments
 (0)
Please sign in to comment.