Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ jobs:
- name: Install Helion
run: |
source .venv/bin/activate
uv pip install -r requirements.txt
SETUPTOOLS_SCM_PRETEND_VERSION="0.0.0" uv pip install -e .'[dev]' --no-deps
SETUPTOOLS_SCM_PRETEND_VERSION="0.0.0" uv pip install -e .'[dev]'
python -c "import helion; print(helion.__name__)"

- name: Install Benchmark Requirements
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
path: |
~/.cache/uv
~/.venv
key: ${{ matrix.python-version }}-${{ matrix.runtime-version }}-${{ matrix.pytorch-version }}-${{ hashFiles('.github/workflows/test.yml', 'requirements.txt') }}-${{ steps.date.outputs.month }}
key: ${{ matrix.python-version }}-${{ matrix.runtime-version }}-${{ matrix.pytorch-version }}-${{ hashFiles('.github/workflows/test.yml') }}-${{ steps.date.outputs.month }}

- name: Install PyTorch
run: |
Expand Down Expand Up @@ -122,11 +122,12 @@ jobs:
rm -rf triton/
python -c "import triton; print(f'Triton version: {triton.__version__}')"

- name: Install Requirements
- name: Install Helion
run: |
source .venv/bin/activate
uv pip install -r requirements.txt
uv pip install pytest-timeout setuptools
uv pip install setuptools
SETUPTOOLS_SCM_PRETEND_VERSION="0.0.0" uv pip install -e .'[dev]'
python -c "import helion; print(helion.__name__)"

- name: Run Tests
run: |
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,18 @@ dependencies = [
"typing_extensions>=4.0.0",
"filecheck",
"psutil",
"tqdm",
"filecheck",
"numpy",
"rich"
]

[project.optional-dependencies]
dev = [
"expecttest",
"pytest",
"pre-commit"
"pytest-timeout",
"pre-commit",
"hypothesis"
]

[project.urls]
Expand Down
8 changes: 0 additions & 8 deletions requirements.txt

This file was deleted.

Loading