pinokiod 3.12.0 → 3.12.1
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/kernel/bin/setup.js +4 -0
- package/package.json +1 -1
package/kernel/bin/setup.js
CHANGED
|
@@ -155,6 +155,7 @@ module.exports = {
|
|
|
155
155
|
}
|
|
156
156
|
requirements = requirements.concat([
|
|
157
157
|
{ name: "git", },
|
|
158
|
+
{ name: "uv", },
|
|
158
159
|
{ name: "caddy", },
|
|
159
160
|
{ name: "py", },
|
|
160
161
|
])
|
|
@@ -166,6 +167,7 @@ module.exports = {
|
|
|
166
167
|
requirements,
|
|
167
168
|
conda_requirements: [
|
|
168
169
|
zip_cmd,
|
|
170
|
+
"uv",
|
|
169
171
|
"git",
|
|
170
172
|
"caddy"
|
|
171
173
|
]
|
|
@@ -181,6 +183,7 @@ module.exports = {
|
|
|
181
183
|
}
|
|
182
184
|
requirements = requirements.concat([
|
|
183
185
|
{ name: "git", },
|
|
186
|
+
{ name: "uv", },
|
|
184
187
|
{ name: "caddy", },
|
|
185
188
|
{ name: "py", },
|
|
186
189
|
])
|
|
@@ -192,6 +195,7 @@ module.exports = {
|
|
|
192
195
|
requirements,
|
|
193
196
|
conda_requirements: [
|
|
194
197
|
zip_cmd,
|
|
198
|
+
"uv",
|
|
195
199
|
"git",
|
|
196
200
|
"caddy"
|
|
197
201
|
]
|