Skip to content

Commit 1661137

Browse files
fedebotufacebook-github-bot
authored andcommitted
add lower bounds on prerequisites (#46)
Summary: This PR makes the prerequisites [here](https://github.com/pytorch-labs/tritonparse#:~:text=Prerequisites%3A%20Python%20%E2%89%A5%203.10%2C%20Triton%20%3E%203.3.1%20(install%20from%20source)%2C%20GPU%20required%20(NVIDIA/AMD)) explicit in the `pyproject.toml`. The main reason is that TritonParse may fail silently if the wrong version of Triton is used (for instance, due to further installation of other packages); these changes avoid such a situation 👍 Pull Request resolved: #46 Reviewed By: adamomainz Differential Revision: D79178871 Pulled By: FindHao fbshipit-source-id: 57f3d5726f1d5c630b1fd28b4f31e6b93dbf0716
1 parent abc2a84 commit 1661137

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ build-backend = "setuptools.build_meta"
66
name = "tritonparse"
77
version = "0.1.1"
88
dependencies = [
9-
"triton",
9+
"triton>3.3.1",
1010
]
11+
requires-python = ">=3.10"
1112

1213
[project.optional-dependencies]
1314
test = [

0 commit comments

Comments
 (0)