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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true

- uses: actions/setup-python@v5
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true

- uses: actions/setup-python@v5
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
python: ["cp39", "cp310", "cp311", "cp312", "cp313"]
steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
Expand Down Expand Up @@ -64,6 +66,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Build sdist
run: pipx run build --sdist
Expand Down
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,3 @@ CMakeUserPresets.json
*/models
logs/
*log.txt

# Bypass general rules for vendored SDK
!external/TouchEngine-Windows/bin/*.dll
!external/TouchEngine-Windows/lib/*.lib
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "external/TouchEngine-Windows"]
path = external/TouchEngine-Windows
url = https://github.com/TouchDesigner/TouchEngine-Windows
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,18 @@ Full API documentation is available at [intentdev.github.io/touchpy](https://int
### Setup

```bash
git clone --recurse-submodules https://github.com/IntentDev/touchpy.git
cd touchpy
uv venv --python 3.12
uv sync --extra examples
```

If you already cloned without `--recurse-submodules`:

```bash
git submodule update --init
```

This creates a `.venv` with Python 3.12, builds TouchPy from source (via scikit-build-core), and installs CUDA-enabled PyTorch + numpy for running examples.

> **Note:** Python 3.12 is recommended. PyTorch wheels for 3.13+ may have packaging issues.
Expand Down
1 change: 1 addition & 0 deletions external/TouchEngine-Windows
Submodule TouchEngine-Windows added at e96c34
178 changes: 0 additions & 178 deletions external/TouchEngine-Windows/CHANGES.md

This file was deleted.

6 changes: 0 additions & 6 deletions external/TouchEngine-Windows/LICENSE.md

This file was deleted.

Loading
Loading