concurrent-c-node 0.4.0__tar.gz → 0.4.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: concurrent-c-node
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: JavaScript and npm packages from Python over the Concurrent-C bridge: one spawned Node child per domain, host-controlled lifetime.
5
5
  License: MIT
6
6
  Project-URL: Repository, https://github.com/sreekotay/concurrent-c
@@ -119,6 +119,10 @@ And *which packages* it sees is the working directory's
119
119
  Run Python in your project, get your project's packages: `npm install`
120
120
  next to your program is the whole setup.
121
121
 
122
+ (Writing Concurrent-C itself rather than Python? There is a zero-IPC
123
+ tier: `cc_js_host_new(&a)` boots libnode *inside* your CC program — see
124
+ [`examples/recipe_js_host.ccs`](https://github.com/sreekotay/concurrent-c/blob/main/examples/recipe_js_host.ccs).)
125
+
122
126
  ## Publishing
123
127
 
124
128
  From the Concurrent-C repo root (packs this wheel and the npm sibling):
@@ -108,6 +108,10 @@ And *which packages* it sees is the working directory's
108
108
  Run Python in your project, get your project's packages: `npm install`
109
109
  next to your program is the whole setup.
110
110
 
111
+ (Writing Concurrent-C itself rather than Python? There is a zero-IPC
112
+ tier: `cc_js_host_new(&a)` boots libnode *inside* your CC program — see
113
+ [`examples/recipe_js_host.ccs`](https://github.com/sreekotay/concurrent-c/blob/main/examples/recipe_js_host.ccs).)
114
+
111
115
  ## Publishing
112
116
 
113
117
  From the Concurrent-C repo root (packs this wheel and the npm sibling):
@@ -27,7 +27,7 @@ import os
27
27
  import subprocess
28
28
 
29
29
  __all__ = ["create", "JsError", "JsHandle", "__version__"]
30
- __version__ = "0.2.0"
30
+ __version__ = "0.4.0"
31
31
 
32
32
  # Typed buffers cross as typed arrays; big ones spill through shared
33
33
  # memory (tmpfs where available) — one memcpy per side, receiver
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: concurrent-c-node
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: JavaScript and npm packages from Python over the Concurrent-C bridge: one spawned Node child per domain, host-controlled lifetime.
5
5
  License: MIT
6
6
  Project-URL: Repository, https://github.com/sreekotay/concurrent-c
@@ -119,6 +119,10 @@ And *which packages* it sees is the working directory's
119
119
  Run Python in your project, get your project's packages: `npm install`
120
120
  next to your program is the whole setup.
121
121
 
122
+ (Writing Concurrent-C itself rather than Python? There is a zero-IPC
123
+ tier: `cc_js_host_new(&a)` boots libnode *inside* your CC program — see
124
+ [`examples/recipe_js_host.ccs`](https://github.com/sreekotay/concurrent-c/blob/main/examples/recipe_js_host.ccs).)
125
+
122
126
  ## Publishing
123
127
 
124
128
  From the Concurrent-C repo root (packs this wheel and the npm sibling):
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "concurrent-c-node"
7
- version = "0.4.0"
7
+ version = "0.4.1"
8
8
  description = "JavaScript and npm packages from Python over the Concurrent-C bridge: one spawned Node child per domain, host-controlled lifetime."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"