runspec-linux 0.4.2__tar.gz → 0.4.3__tar.gz
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.
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/CHANGELOG.md +9 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/PKG-INFO +1 -1
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/pyproject.toml +1 -1
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/runspec.toml +2 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/.gitignore +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/__init__.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/containers.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/files.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/logs.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/nc_command.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/network.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/packages.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/power.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/security.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/services.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/sudoers.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/system_info.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/venvs.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/tests/__init__.py +0 -0
- {runspec_linux-0.4.2 → runspec_linux-0.4.3}/tests/test_nc_send.py +0 -0
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# runspec-linux Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.3] — 2026-06-21
|
|
4
|
+
|
|
5
|
+
- **`install-into-venv --venv` and `configure-pip --venv` are now marked
|
|
6
|
+
`ui = "directory"`.** Both point at an existing venv *folder*, so the console's
|
|
7
|
+
path picker opens a folder picker ("Use this folder") instead of a file picker
|
|
8
|
+
— it was previously unclear the arg wanted the venv directory, not the
|
|
9
|
+
`bin/python` inside it. (`install-into-venv --project` stays a generic `path`
|
|
10
|
+
since it accepts either a project directory or a wheel/sdist file.)
|
|
11
|
+
|
|
3
12
|
## [0.4.2] — 2026-06-21
|
|
4
13
|
|
|
5
14
|
Add 3 runnables for managing Python virtualenvs on a fleet host — thin wrappers
|
|
@@ -508,6 +508,7 @@ output = "json"
|
|
|
508
508
|
|
|
509
509
|
[install-into-venv.args.venv]
|
|
510
510
|
type = "path"
|
|
511
|
+
ui = "directory"
|
|
511
512
|
short = "-v"
|
|
512
513
|
description = "Path to the venv to install into (its bundled python runs pip)"
|
|
513
514
|
|
|
@@ -611,6 +612,7 @@ description = "Where to write pip.conf: user (~/.config/pip/pip.conf) or venv (<
|
|
|
611
612
|
|
|
612
613
|
[configure-pip.args.venv]
|
|
613
614
|
type = "path"
|
|
615
|
+
ui = "directory"
|
|
614
616
|
description = "Venv path for --scope venv (the file is written to <venv>/pip.conf)"
|
|
615
617
|
required = false
|
|
616
618
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|