blitzwing 0.1.2 → 0.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/install.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blitzwing",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Interactive setup wizard to join a Blitzwing Petals mother swarm as a compute contributor",
5
5
  "bin": {
6
6
  "blitzwing": "bin/blitzwing.js"
package/src/install.js CHANGED
@@ -95,6 +95,11 @@ export function ensureVenvAndPetals({ onLog }) {
95
95
  ["install", "torch", "--index-url", "https://download.pytorch.org/whl/cpu"],
96
96
  { stdio: "inherit", env }
97
97
  );
98
+ // Needed to compile hivemind protobufs during --no-build-isolation install
99
+ execFileSync(pip, ["install", "grpcio", "grpcio-tools", "protobuf"], {
100
+ stdio: "inherit",
101
+ env,
102
+ });
98
103
  // Hivemind first with no build isolation (needs pkg_resources from setuptools<81)
99
104
  execFileSync(
100
105
  pip,