Skip to content

Commit a034481

Browse files
committed
Update development dependencies in Makefile and enhance README with TritonParse prerequisites. Removed optional test dependencies from pyproject.toml for clarity.
1 parent 7fdc179 commit a034481

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,4 @@ clean:
5555

5656
install-dev:
5757
@echo "Installing development dependencies..."
58-
pip install -e ".[test]"
59-
pip install black usort ruff
58+
pip install black usort ruff coverage

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ pip install -e .
7171

7272
**Prerequisites:** Python ≥ 3.10, Triton > 3.3.1 ([install from source](https://github.com/triton-lang/triton)), GPU required (NVIDIA/AMD)
7373

74+
TritonParse relies on new features in Triton > 3.3.1. Please install Triton from source for now.
75+
7476
## 📚 Complete Documentation
7577

7678
| 📖 Guide | Description |

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
[build-system]
23
requires = ["setuptools>=40.8.0", "wheel"]
34
build-backend = "setuptools.build_meta"
@@ -10,11 +11,6 @@ dependencies = [
1011
]
1112
requires-python = ">=3.10"
1213

13-
[project.optional-dependencies]
14-
test = [
15-
"coverage>=7.0.0",
16-
]
17-
1814
[tool.setuptools.packages.find]
1915
include = ["tritonparse*"]
2016

0 commit comments

Comments
 (0)