wrapture 0.0.2 → 0.0.3

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.
@@ -48,6 +48,13 @@ jobs:
48
48
  uses: actions/setup-node@v4
49
49
  with:
50
50
  node-version: '>=22.8.0'
51
+ - uses: actions/setup-python@v4
52
+ with:
53
+ python-version: '3.10'
54
+ - name: Install Python dependencies
55
+ run: |
56
+ python3 -m pip install --upgrade pip
57
+ pip install torch onnx onnxsim onnxruntime onnxruntime-tools
51
58
  - name: Install dependencies
52
59
  run: | # Install and link dependencies
53
60
  npm i
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3](https://github.com/phun-ky/wrapture/compare/0.0.2...0.0.3) (2025-05-14)
4
+
5
+ ### Bug
6
+
7
+ * 🐛 Python env ([36d0a30](https://github.com/phun-ky/wrapture/commit/36d0a302aebfabf9860f7cc5c70bc8151b221632))
8
+
3
9
  ## [0.0.2](https://github.com/phun-ky/wrapture/compare/0.0.1...0.0.2) (2025-05-14)
4
10
 
5
11
  ### Documentation
package/api/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # wrapture API documentation
2
2
 
3
- > Last updated 2025-05-14T13:10:23.461Z
3
+ > Last updated 2025-05-14T17:28:21.410Z
4
4
 
5
5
  ## Modules
6
6
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # utils/convert
4
4
 
5
- > Last updated 2025-05-14T13:10:23.623Z
5
+ > Last updated 2025-05-14T17:28:21.573Z
6
6
 
7
7
  ## Interfaces
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # utils/generate-wrapper
4
4
 
5
- > Last updated 2025-05-14T13:10:23.726Z
5
+ > Last updated 2025-05-14T17:28:21.677Z
6
6
 
7
7
  ## Interfaces
8
8
 
package/api/wrapture.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # wrapture
4
4
 
5
- > Last updated 2025-05-14T13:10:23.760Z
5
+ > Last updated 2025-05-14T17:28:21.710Z
6
6
 
7
7
  ---
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrapture",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Wrapture lets you go from a Python-trained model to deployable JavaScript with a single command. It generates TypeScript bindings and a Web/Node-compatible wrapper, using WebGPU/WASM-ready ONNX runtimes.",
5
5
  "keywords": [
6
6
  "onnx",