gitarsenal-cli 1.9.5 → 1.9.6
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/.venv_status.json +1 -1
- package/package.json +1 -1
- package/scripts/postinstall.js +2 -1
package/.venv_status.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"created":"2025-08-03T17:
|
|
1
|
+
{"created":"2025-08-03T17:42:46.952Z","packages":["modal","gitingest","requests"],"uv_version":"uv 0.8.4 (e176e1714 2025-07-30)"}
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -32,9 +32,10 @@ async function checkAndInstallUv() {
|
|
|
32
32
|
if (platform === 'darwin') {
|
|
33
33
|
// macOS - prioritize Homebrew
|
|
34
34
|
installMethods = [
|
|
35
|
-
'brew install uv',
|
|
36
35
|
'curl -LsSf https://astral.sh/uv/install.sh | sh',
|
|
36
|
+
'pip install uv',
|
|
37
37
|
'pip3 install uv',
|
|
38
|
+
'brew install uv',
|
|
38
39
|
'cargo install uv'
|
|
39
40
|
];
|
|
40
41
|
} else if (platform === 'win32') {
|