Skip to content

Commit 5927673

Browse files
authored
Remove cmake>=3.20 from tests target in setup.py (#2111)
`Cmake` was added due to #1365 Closes #2110 Signed-off-by: Anatoly Myachev <[email protected]>
1 parent db604b8 commit 5927673

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

python/setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,6 @@ def get_install_requires():
672672
"pytest",
673673
"scipy>=1.7.1",
674674
"llnl-hatchet",
675-
"cmake>=3.20",
676675
],
677676
"tutorials": [
678677
"matplotlib",

scripts/compile-triton.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ build_triton() {
181181
pip install -e .
182182

183183
# Install triton tests.
184-
pip install -vvv -e '.[tests]'
184+
pip install -vvv -e '.[build,tests]'
185185

186186
# Copy compile_commands.json in the build directory (so that cland vscode plugin can find it).
187187
cp $TRITON_PROJ_BUILD/"$(ls $TRITON_PROJ_BUILD)"/compile_commands.json $TRITON_PROJ/

0 commit comments

Comments
 (0)