hyperframes-vst-host 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ jobs:
9
+ test:
10
+ # macOS: the sidecar's native-plugin paths (AU, editor windows, plugin
11
+ # scanning defaults) are macOS-centric, and pedalboard ships mac wheels.
12
+ runs-on: macos-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: astral-sh/setup-uv@v5
16
+ - name: Install dependencies
17
+ run: uv sync
18
+ - name: Run tests
19
+ run: uv run pytest -q
@@ -0,0 +1,23 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ # Must match the environment name registered with PyPI's trusted
11
+ # publisher config for this repo — the OIDC token is scoped to it.
12
+ environment: pypi
13
+ permissions:
14
+ # Required for PyPI trusted publishing (OIDC token exchange).
15
+ id-token: write
16
+ contents: read
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: astral-sh/setup-uv@v5
20
+ - name: Build sdist + wheel
21
+ run: uv build
22
+ - name: Publish (trusted publishing — no token needed)
23
+ run: uv publish
@@ -0,0 +1,7 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .pytest_cache/
4
+ .venv/
5
+ *.egg-info/
6
+ dist/
7
+ build/