From 39a92797a38c9909556afff5e835a0340b637fa7 Mon Sep 17 00:00:00 2001 From: Evgeni Burovski Date: Tue, 28 Jul 2026 14:12:06 +0200 Subject: [PATCH 1/2] CI: use array_api_strict main branch for testing --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dea32cfe..3df155f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,8 +26,9 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install array-api-strict + python -m pip install https://github.com/data-apis/array-api-strict.git python -m pip install -r requirements.txt + python -c'import array_api_strict; print(array_api_strict.__file__)' - name: Run the test suite env: ARRAY_API_TESTS_MODULE: array_api_strict From 91609a9f4fdd7f2bfd9156ac1820a3e32aefa70e Mon Sep 17 00:00:00 2001 From: Evgeni Burovski Date: Tue, 28 Jul 2026 14:16:22 +0200 Subject: [PATCH 2/2] . --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3df155f5..db95e443 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install https://github.com/data-apis/array-api-strict.git + python -m pip install git+https://github.com/data-apis/array-api-strict.git@main python -m pip install -r requirements.txt python -c'import array_api_strict; print(array_api_strict.__file__)' - name: Run the test suite