Skip to content

Commit 3e3d92a

Browse files
committed
address review comments
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent a45c9d6 commit 3e3d92a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ jobs:
236236
- name: Install pip dependencies
237237
run: |
238238
python3 -m pip install --upgrade pip
239-
python3 -m pip install cython wheel cmake==3.24 ninja pytest-forked pytest-xdist lit
239+
python3 -m pip install cython setuptools>=65.6.1 wheel cmake==3.24 ninja pytest-forked pytest-xdist lit
240240
- name: Install Triton
241241
env:
242242
CUDA_HOME: "/usr/local/cuda"
@@ -569,7 +569,7 @@ jobs:
569569
python3 -m venv ~/.venv
570570
source ~/.venv/bin/activate
571571
python3 -m pip install --upgrade pip
572-
python3 -m pip install cython wheel cmake==3.24 ninja pytest-xdist lit pybind11
572+
python3 -m pip install cython setuptools>=65.6.1 wheel cmake==3.24 ninja pytest-xdist lit pybind11
573573
- name: Install Triton
574574
env:
575575
TRITON_BUILD_WITH_O1: "true"

.github/workflows/integration-tests.yml.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ jobs:
268268
- name: Install pip dependencies
269269
run: |
270270
python3 -m pip install --upgrade pip
271-
python3 -m pip install cython wheel cmake==3.24 ninja pytest-forked pytest-xdist lit
271+
python3 -m pip install cython setuptools>=65.6.1 wheel cmake==3.24 ninja pytest-forked pytest-xdist lit
272272

273273
- name: Install Triton
274274
env:
@@ -481,7 +481,7 @@ jobs:
481481
python3 -m venv ~/.venv
482482
source ~/.venv/bin/activate
483483
python3 -m pip install --upgrade pip
484-
python3 -m pip install cython wheel cmake==3.24 ninja pytest-xdist lit pybind11
484+
python3 -m pip install cython setuptools>=65.6.1 wheel cmake==3.24 ninja pytest-xdist lit pybind11
485485
- name: Install Triton
486486
env:
487487
TRITON_BUILD_WITH_O1: "true"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=60.8.0", "wheel", "cmake>=3.18", "ninja>=1.11.1"]
2+
requires = ["setuptools>=65.6.1", "wheel", "cmake>=3.18", "ninja>=1.11.1"]
33

44
[tool.yapf]
55
based_on_style = "pep8"

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
[build-system]
3-
requires = ["setuptools>=60.8.0", "wheel", "cmake>=3.18", "ninja>=1.11.1", "pybind11>=2.13.1"]
3+
requires = ["setuptools>=65.6.1", "wheel", "cmake>=3.18", "ninja>=1.11.1", "pybind11>=2.13.1"]
44

55
# We're incrementally switching from autopep8 to ruff.
66
[tool.autopep8]

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ def get_git_commit_hash(length=8):
765765
author_email="[email protected]",
766766
description="A language and compiler for custom Deep Learning operations",
767767
long_description="",
768-
install_requires=["setuptools>=60.8.0"],
768+
install_requires=["setuptools>=65.6.1"],
769769
packages=get_packages(),
770770
entry_points=get_entry_points(),
771771
package_data=package_data,

0 commit comments

Comments
 (0)