You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,9 @@
2
2
3
3
## 4.1.2 (unreleased)
4
4
5
+
- Fix #54: Add `fixed` install mode for non-editable installations to support production and Docker deployments. The new `editable` mode replaces `direct` as the default (same behavior, clearer naming). The `direct` mode is now deprecated but still works with a warning. Install modes: `editable` (with `-e`, for development), `fixed` (without `-e`, for production/Docker), `skip` (clone only).
6
+
[jensens]
7
+
5
8
- Fix #35: Add `smart-threading` configuration option to prevent overlapping credential prompts when using HTTPS URLs. When enabled (default), HTTPS packages are processed serially first to ensure clean credential prompts, then other packages are processed in parallel for speed. Can be disabled with `smart-threading = false` if you have credential helpers configured.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ The **main section** must be called `[settings]`, even if kept empty.
86
86
|`threads`| Number of parallel threads for fetching sources |`4`|
87
87
|`smart-threading`| Process HTTPS packages serially to avoid overlapping credential prompts (see below) |`True`|
88
88
|`offline`| Skip all VCS fetch operations (handy for offline work) |`False`|
89
-
|`default-install-mode`| Default `install-mode` for packages: `direct`or `skip`|`direct`|
89
+
|`default-install-mode`| Default `install-mode` for packages: `editable`, `fixed`, or `skip`(see below) |`editable`|
90
90
|`default-update`| Default update behavior: `yes` or `no`|`yes`|
91
91
|`default-use`| Default use behavior (when false, sources not checked out) |`True`|
92
92
@@ -220,7 +220,7 @@ For package sources, the section name is the package name: `[PACKAGENAME]`
220
220
221
221
| Option | Description | Default |
222
222
|--------|-------------|---------|
223
-
|`install-mode`|`direct`: Install with `pip -e PACKAGEPATH`<br>`skip`: Only clone, don't install |`default-install-mode`|
223
+
|`install-mode`|`editable`: Install with `-e` (development mode)<br>`fixed`: Install without `-e` (production/Docker)<br>`skip`: Only clone, don't install<br>⚠️ `direct` is deprecated, use `editable`|`default-install-mode`|
224
224
|`use`| When `false`, source is not checked out and version not overridden |`default-use`|
0 commit comments