This repository was archived by the owner on Jul 16, 2025. It is now read-only.
Commit b714d0e
authored
Gio/release with static analysis (#110)
* Fix issue missing tree_sitter_python
* Explicitly make FORK the multiprocessing option to choose
This is because in the MacOS release build (at least) I keep seeing errors like:
```
Error: No such option: --multiprocessing-fork
Usage: main [OPTIONS] COMMAND [ARGS]...
Try 'main --help' for help.
Error: No such option: -B
Usage: main [OPTIONS] COMMAND [ARGS]...
Try 'main --help' for help.
```
Which are from instantiating new processes, for sure.
This SO question: https://stackoverflow.com/questions/67999589/multiprocessing-with-pool-throws-error-on-m1-macbook
Indicates it might be the way it creates new processes and suggests using "fork" explicitly.
We're giving that a go.1 parent 0556cd6 commit b714d0e
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
0 commit comments