infinicode 2.8.18 → 2.8.19

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinicode",
3
- "version": "2.8.18",
3
+ "version": "2.8.19",
4
4
  "description": "OpenKernel — provider-agnostic AI execution kernel. Native coding agent + mission-driven execution runtime.",
5
5
  "type": "module",
6
6
  "main": "./dist/kernel/index.js",
@@ -5,8 +5,12 @@
5
5
  # that's wrong off a real Pi, where plain `pip install opencv-python` is the
6
6
  # normal path. Use this file for a demo/dev machine; use
7
7
  # requirements_pi_unified.txt (+ apt) on an actual Raspberry Pi.
8
+ # numpy is intentionally unpinned on the upper end — modern opencv-python
9
+ # wheels are built against numpy 2.x, and pinning <2 forces pip to source-
10
+ # build an old numpy with no prebuilt wheel for current Python versions
11
+ # (needs a C/C++ compiler most demo machines don't have installed).
8
12
  flask==3.0.0
9
13
  flask-cors==4.0.0
10
14
  opencv-python>=4.8
11
- numpy>=1.24,<2
15
+ numpy>=1.24
12
16
  requests>=2.31