Skip to content

Commit cdafdfc

Browse files
committed
Pin setuptools to <80
Builds currently fail, pin in the mean time
1 parent fa4eaa7 commit cdafdfc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/generate-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- name: Install dpctl dependencies
9292
shell: bash -l {0}
9393
run: |
94-
pip install numpy cython setuptools"<80" pytest pytest-cov scikit-build cmake coverage[toml] versioneer[toml]==0.29
94+
pip install numpy cython setuptools pytest pytest-cov scikit-build cmake coverage[toml] versioneer[toml]==0.29
9595
9696
- name: Build dpctl with coverage
9797
shell: bash -l {0}

.github/workflows/os-llvm-sycl-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
- name: Install dpctl dependencies
108108
shell: bash -l {0}
109109
run: |
110-
pip install numpy cython setuptools"<80" pytest scikit-build cmake ninja versioneer[toml]==0.29
110+
pip install numpy cython setuptools pytest scikit-build cmake ninja versioneer[toml]==0.29
111111
112112
- name: Checkout repo
113113
uses: actions/checkout@v4.2.2

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ requirements:
3333
- {{ pin_compatible('intel-cmplr-lib-rt', min_pin='x.x', max_pin='x') }}
3434
# Ensure we are using latest version of setuptools, since we don't need
3535
# editable environments for release.
36-
- setuptools >=69
36+
- setuptools >=69,<80
3737
{% for dep in py_build_deps %}
3838
{% if dep.startswith('ninja') %}
3939
- {{ dep.split(';')[0] }} # [not win]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [
44
# TODO: keep in sync with [project.dependencies]
55
"wheel>=0.43",
66
"build>=1.1",
7-
"setuptools>=63.0.0",
7+
"setuptools>=63.0.0,<80",
88
"scikit-build>=0.17.0",
99
"ninja>=1.11.1; platform_system!='Windows'",
1010
"cmake>=3.29.0",

0 commit comments

Comments
 (0)