From eb688bd25ef222f370395475a233a07ea52fc72e Mon Sep 17 00:00:00 2001 From: Niklas Muennighoff Date: Sun, 5 May 2024 16:28:09 -0700 Subject: [PATCH 1/2] Increment torch version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 75c6b2827..c1cf71bf4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ requires-python = ">=3.8" license = { file = "LICENSE" } dependencies = [ "numpy", - "torch>=2.0,<2.3", + "torch>=2.1,<2.3", "omegaconf", "rich", "boto3", From 64ad6b14605d46b8c530fb6e483ca961a5435546 Mon Sep 17 00:00:00 2001 From: epwalsh Date: Fri, 17 May 2024 14:30:28 -0700 Subject: [PATCH 2/2] split off HF tests --- .github/workflows/main.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1b41be38b..222a1fcc2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,15 @@ jobs: - python: '3.10' task: name: Test - run: pytest -v --color=yes --durations=5 tests/ + run: | + pytest -v --color=yes --durations=5 tests/ \ + --ignore-glob='tests/hf_olmo/*' + + - python: '3.10' + task: + name: Test HF + run: | + pytest -v --color=yes --durations=5 tests/hf_olmo - python: '3.10' task: