runspec-linux 0.1.1__tar.gz → 0.1.2__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.
@@ -1,5 +1,11 @@
1
1
  # runspec-linux Changelog
2
2
 
3
+ ## [0.1.2] — 2026-06-02
4
+
5
+ Lower the Python floor to 3.10 to match the core `runspec` library (no
6
+ 3.11-only features are used). Bump the `runspec` dependency floor to
7
+ `>=0.23.0`.
8
+
3
9
  ## [0.1.1] — 2026-05-28
4
10
 
5
11
  Enable `[config.logging]` for all 21 runnables. Each invocation now writes a
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: runspec-linux
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Linux system admin runnables for runspec
5
- Requires-Python: >=3.11
6
- Requires-Dist: runspec>=0.17.0
5
+ Requires-Python: >=3.10
6
+ Requires-Dist: runspec>=0.23.0
7
7
  Provides-Extra: dev
8
8
  Requires-Dist: mypy; extra == 'dev'
9
9
  Requires-Dist: pytest>=8.0; extra == 'dev'
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "runspec-linux"
7
- version = "0.1.1"
8
- requires-python = ">=3.11"
7
+ version = "0.1.2"
8
+ requires-python = ">=3.10"
9
9
  description = "Linux system admin runnables for runspec"
10
10
  dependencies = [
11
- "runspec>=0.17.0",
11
+ "runspec>=0.23.0",
12
12
  ]
13
13
 
14
14
  [project.scripts]
@@ -45,11 +45,11 @@ dev = [
45
45
  testpaths = ["tests"]
46
46
 
47
47
  [tool.mypy]
48
- python_version = "3.11"
48
+ python_version = "3.10"
49
49
 
50
50
  [tool.ruff]
51
51
  line-length = 200
52
- target-version = "py311"
52
+ target-version = "py310"
53
53
 
54
54
  [tool.ruff.lint]
55
55
  select = ["E", "F", "I", "UP", "B", "SIM"]
File without changes