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 CHANGED
@@ -1 +1 @@
1
- {"created":"2025-08-03T17:35:41.855Z","packages":["modal","gitingest","requests"],"uv_version":"uv 0.8.4 (e176e1714 2025-07-30)"}
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitarsenal-cli",
3
- "version": "1.9.5",
3
+ "version": "1.9.6",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -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') {