From 2f906a2de282cf088290c71b128e19fadcb4295a Mon Sep 17 00:00:00 2001 From: Yevhenii Havrylko Date: Wed, 15 May 2024 16:43:45 -0400 Subject: [PATCH 1/2] Pin numba to 0.59 --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7b447fdf87..a141f83f09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ requires = [ # We need dpctl for UsmNdArray integration for dpcpp code "dpctl>=0.16.1", # We need numba for runtime cpp headers - "numba>=0.59.0", + "numba>=0.59.0,<0.60.0a0", "llvmlite>=0.42.0", # Do we need dpnp at build time? "dpnp >=0.14", @@ -38,8 +38,7 @@ classifiers = [ dependencies = [ # TODO: keep in sync with [build-system.requires] and /conda-recipe/meta.yaml # This restrictions are for dependabot, actual restrictions are set with - # conda. - # TODO: populate it during build process + # conda. TODO: populate it during build process # TODO: do we have to set sycl runtime dependencies here # "dpcpp-cpp-rt>=0.59.0", # "intel-cmplr-lib-rt>=0.59.0" From 3201b49f23b8ac6f70ba5fe5699f09ca6d9ee589 Mon Sep 17 00:00:00 2001 From: Yevhenii Havrylko Date: Mon, 20 May 2024 14:43:09 -0400 Subject: [PATCH 2/2] Use windows-2019 for build --- .github/workflows/conda-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index f6dc0dcc72..f5496bae39 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -30,7 +30,7 @@ jobs: fail-fast: false matrix: python: ['3.9', '3.10', '3.11'] - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest, windows-2019] runs-on: ${{ matrix.os }}