Skip to content

Commit f6c8182

Browse files
committed
v0.1.6
1 parent ec57217 commit f6c8182

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ jobs:
282282
- name: Install dependencies
283283
run: pnpm install
284284
- name: Fix soname
285-
run: pnpm run build:fix
285+
run: node fix-python-soname.js
286286
shell: bash
287287
- uses: actions/download-artifact@v4
288288
with:

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@platformatic/python-node",
33
"description": "Run ASGI-compatible Python apps in Node.js",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"main": "index.js",
66
"types": "index.d.ts",
77
"napi": {
@@ -30,10 +30,8 @@
3030
"artifacts": "napi artifacts",
3131
"build": "npm run build:debug -- --release",
3232
"build:debug": "napi build --platform --features napi-support",
33-
"build:fix": "node fix-python-soname.js",
3433
"build:wasm": "rustup target add wasm32-wasip1 && cargo build --package fix-python-soname --target wasm32-wasip1 --release && cp target/wasm32-wasip1/release/fix-python-soname.wasm .",
3534
"prepublishOnly": "npm run build:wasm && napi prepublish -t npm",
36-
"postinstall": "npm run build:fix",
3735
"lint": "oxlint",
3836
"test": "node --test test/**.test.mjs",
3937
"universal": "napi universal",

0 commit comments

Comments
 (0)