From f63d8bd1ce9bd1f08be84387e3e5813ba46066d4 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Tue, 29 Apr 2025 09:23:38 -0700 Subject: [PATCH] Pin setuptools to <80 in OS compiler and coverage builds --- .github/workflows/generate-coverage.yaml | 2 +- .github/workflows/os-llvm-sycl-build.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-coverage.yaml b/.github/workflows/generate-coverage.yaml index bfbefb61d2..e4fa16c591 100644 --- a/.github/workflows/generate-coverage.yaml +++ b/.github/workflows/generate-coverage.yaml @@ -91,7 +91,7 @@ jobs: - name: Install dpctl dependencies shell: bash -l {0} run: | - pip install numpy cython setuptools pytest pytest-cov scikit-build cmake coverage[toml] versioneer[toml]==0.29 + pip install numpy cython setuptools"<80" pytest pytest-cov scikit-build cmake coverage[toml] versioneer[toml]==0.29 - name: Build dpctl with coverage shell: bash -l {0} diff --git a/.github/workflows/os-llvm-sycl-build.yml b/.github/workflows/os-llvm-sycl-build.yml index 9775f0b2c7..d5b648c3e2 100644 --- a/.github/workflows/os-llvm-sycl-build.yml +++ b/.github/workflows/os-llvm-sycl-build.yml @@ -107,7 +107,7 @@ jobs: - name: Install dpctl dependencies shell: bash -l {0} run: | - pip install numpy cython setuptools pytest scikit-build cmake ninja versioneer[toml]==0.29 + pip install numpy cython setuptools"<80" pytest scikit-build cmake ninja versioneer[toml]==0.29 - name: Checkout repo uses: actions/checkout@v4.2.2