From 8173a242a2326a551d6895602dcd9f8170bd390e Mon Sep 17 00:00:00 2001 From: Wenjie Du Date: Tue, 10 Oct 2023 01:22:01 +0800 Subject: [PATCH] fix: also fix the versions of torch-sparse to avoid independency install error during CI testing; --- .github/workflows/testing_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing_ci.yml b/.github/workflows/testing_ci.yml index 5ea295cb..f969ba6a 100644 --- a/.github/workflows/testing_ci.yml +++ b/.github/workflows/testing_ci.yml @@ -58,7 +58,7 @@ jobs: - name: Install other dependencies run: | pip install pypots - pip install torch-geometric==2.3.1 torch-scatter==2.1.1 torch-sparse -f "https://data.pyg.org/whl/torch-${{ matrix.torch-version }}+cpu.html" + pip install torch-geometric==2.3.1 torch-scatter==2.1.1 torch-sparse==0.6.17 -f "https://data.pyg.org/whl/torch-${{ matrix.torch-version }}+cpu.html" pip install -e ".[dev]" - name: Fetch the test environment details