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.
Files changed (20) hide show
  1. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/CHANGELOG.md +9 -0
  2. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/PKG-INFO +1 -1
  3. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/pyproject.toml +1 -1
  4. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/runspec.toml +2 -0
  5. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/.gitignore +0 -0
  6. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/__init__.py +0 -0
  7. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/containers.py +0 -0
  8. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/files.py +0 -0
  9. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/logs.py +0 -0
  10. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/nc_command.py +0 -0
  11. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/network.py +0 -0
  12. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/packages.py +0 -0
  13. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/power.py +0 -0
  14. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/security.py +0 -0
  15. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/services.py +0 -0
  16. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/sudoers.py +0 -0
  17. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/system_info.py +0 -0
  18. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/runspec_linux/venvs.py +0 -0
  19. {runspec_linux-0.4.2 → runspec_linux-0.4.3}/tests/__init__.py +0 -0
  20. {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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: runspec-linux
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: Linux system admin runnables for runspec
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: runspec-linux-core>=0.3.2
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "runspec-linux"
7
- version = "0.4.2"
7
+ version = "0.4.3"
8
8
  requires-python = ">=3.10"
9
9
  description = "Linux system admin runnables for runspec"
10
10
  dependencies = [
@@ -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