From 9c2b13b32273670159656a9d67df88637934c3b6 Mon Sep 17 00:00:00 2001 From: gbrixi Date: Tue, 16 Jun 2026 13:32:05 -0700 Subject: [PATCH] =?UTF-8?q?release:=20vtx=201.1.0=20=E2=80=94=20opt-in=20H?= =?UTF-8?q?C{S,M,L}=20Triton=20kernels=20(#77)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump 1.0.8->1.1.0 and drop *.so from MANIFEST.in so the pure-Python wheel can't bundle stray compiled extensions. --- MANIFEST.in | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 19821ca..416c9d7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,5 @@ recursive-include vortex *.py -recursive-include vortex *.cpp *.cu *.h *.hpp *.cuh *.so +recursive-include vortex *.cpp *.cu *.h *.hpp *.cuh recursive-include vortex/ops/attn/csrc/flash_attn *.cpp *.cu *.hpp recursive-include cutlass/include *.h include LICENSE diff --git a/pyproject.toml b/pyproject.toml index 232cae8..e98f951 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "vtx" -version = "1.0.8" +version = "1.1.0" description = "Reference implementation of operators for deep signal processing architectures" readme = "README.md" authors = [{ name = "Michael Poli" }]