Skip to content

Commit 5ef97d6

Browse files
authored
[CLN] Remove cython installation as unused (#5315)
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent 768854e commit 5ef97d6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/WINDOWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ python -c 'import torch;print(torch.__version__)'
141141
Install build dependencies:
142142

143143
```
144-
pip install -U wheel pybind11 cython cmake
144+
pip install -U wheel pybind11 cmake
145145
```
146146

147147
Build and install Triton:

.github/workflows/build-test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
.venv\Scripts\activate.ps1
120120
Invoke-BatchFile "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
121121
cd ${{ env.NEW_WORKSPACE }}
122-
pip install -U wheel pybind11 cython cmake
122+
pip install -U wheel pybind11 cmake
123123
pip install -v '.[build,tests,tutorials]'
124124
125125
- name: Triton version

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
.venv\Scripts\activate.ps1
5454
Invoke-BatchFile "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
5555
cd ${{ env.NEW_WORKSPACE }}
56-
pip install -U wheel pybind11 cython cmake
56+
pip install -U wheel pybind11 cmake
5757
pip install -v '.[build]'
5858
5959
- name: Clean

.github/workflows/e2e-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
.venv\Scripts\activate.ps1
145145
Invoke-BatchFile "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
146146
cd ${{ env.NEW_WORKSPACE }}
147-
pip install -U wheel pybind11 cython cmake
147+
pip install -U wheel pybind11 cmake
148148
pip install -v '.[build,tests,tutorials]'
149149
150150
- name: Triton version

.github/workflows/inductor-tests-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
.venv\Scripts\activate.ps1
123123
Invoke-BatchFile "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
124124
cd ${{ env.NEW_WORKSPACE }}
125-
pip install -U wheel pybind11 cython cmake
125+
pip install -U wheel pybind11 cmake
126126
pip install -v '.[build,tests,tutorials]'
127127
128128
- name: Triton version

.github/workflows/pip-test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
.venv\Scripts\activate.ps1
9191
Invoke-BatchFile "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
9292
cd ${{ env.NEW_WORKSPACE }}
93-
pip install -U wheel pybind11 cython cmake intel-sycl-rt==2025.2.1
93+
pip install -U wheel pybind11 cmake intel-sycl-rt==2025.2.1
9494
python setup.py -v bdist_wheel
9595
pip install (Get-Item ${{ env.NEW_WORKSPACE }}\dist\*.whl)
9696

0 commit comments

Comments
 (0)