cas-toolbox 2025.45.1__tar.gz → 2025.46.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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cas-toolbox
3
- Version: 2025.45.1
3
+ Version: 2025.46.2
4
4
  Summary: Cluster Automation Scripts Toolbox
5
5
  Author-email: Yufei Pan <pan@zopyr.us>
6
6
  License: GPL-3.0-or-later
@@ -18,14 +18,14 @@ Classifier: Programming Language :: Python :: 3
18
18
  Classifier: Operating System :: POSIX :: Linux
19
19
  Requires-Python: >=3.6
20
20
  Description-Content-Type: text/markdown
21
- Requires-Dist: hpcp==9.38
21
+ Requires-Dist: hpcp==9.40
22
22
  Requires-Dist: multicmd==1.39
23
- Requires-Dist: multissh3==6.00
24
- Requires-Dist: simple-iotest==3.61.0
23
+ Requires-Dist: multissh3==6.04
24
+ Requires-Dist: simple-iotest==3.61.1
25
25
  Requires-Dist: statbtrfs==0.21
26
26
  Requires-Dist: tee-logger==6.37
27
27
  Requires-Dist: tsvz==3.30
28
- Requires-Dist: statblk==1.32
28
+ Requires-Dist: statblk==1.33
29
29
 
30
30
  # cas-toolbox
31
31
 
@@ -49,6 +49,7 @@ Cluster Automation Scripts Toolbox -
49
49
  - resource
50
50
  - prettytable
51
51
  - ipaddress
52
+ - numpy
52
53
 
53
54
  ## Includes following single file libs
54
55
  - hpcp.py
@@ -58,6 +59,7 @@ Cluster Automation Scripts Toolbox -
58
59
  - statbtrfs.py
59
60
  - Tee_Logger.py
60
61
  - TSVZ.py
62
+ - statblk.py
61
63
 
62
64
  ## Installation
63
65
  Use pip:
@@ -70,8 +72,10 @@ pipx install cas-toolbox
70
72
  ```
71
73
  Use uv:
72
74
  ```bash
73
- uv tool install cas-toolbox
75
+ uv tool install --with numpy cas-toolbox
74
76
  ```
77
+ Note: with numpy, iotest random number generator will perform much better. But it is not used anywhere else.
78
+
75
79
  Use uv to add as dependency:
76
80
  ```bash
77
81
  uv add cas-toolbox
@@ -83,7 +87,8 @@ uv add cas-toolbox
83
87
  - `mssh` / `mssh3` / `multissh` / `multissh3` / `multiSSH3`
84
88
  - `iotest`
85
89
  - `statbtrfs`
86
- - `TSVZ` / `tsvz`
90
+ - `TSVZ` / `tsvz`
91
+ - `statblk`
87
92
 
88
93
  All with `--help` / `-h` provided.
89
94
 
@@ -101,3 +106,4 @@ GPL-3.0-or-later
101
106
  - [statbtrfs](https://github.com/yufei-pan/statbtrfs)
102
107
  - [Tee_Logger](https://github.com/yufei-pan/Tee_Logger)
103
108
  - [TSVZ](https://github.com/yufei-pan/TSVZ)
109
+ - [statblk](https://github.com/yufei-pan/statblk)
@@ -20,6 +20,7 @@ Cluster Automation Scripts Toolbox -
20
20
  - resource
21
21
  - prettytable
22
22
  - ipaddress
23
+ - numpy
23
24
 
24
25
  ## Includes following single file libs
25
26
  - hpcp.py
@@ -29,6 +30,7 @@ Cluster Automation Scripts Toolbox -
29
30
  - statbtrfs.py
30
31
  - Tee_Logger.py
31
32
  - TSVZ.py
33
+ - statblk.py
32
34
 
33
35
  ## Installation
34
36
  Use pip:
@@ -41,8 +43,10 @@ pipx install cas-toolbox
41
43
  ```
42
44
  Use uv:
43
45
  ```bash
44
- uv tool install cas-toolbox
46
+ uv tool install --with numpy cas-toolbox
45
47
  ```
48
+ Note: with numpy, iotest random number generator will perform much better. But it is not used anywhere else.
49
+
46
50
  Use uv to add as dependency:
47
51
  ```bash
48
52
  uv add cas-toolbox
@@ -54,7 +58,8 @@ uv add cas-toolbox
54
58
  - `mssh` / `mssh3` / `multissh` / `multissh3` / `multiSSH3`
55
59
  - `iotest`
56
60
  - `statbtrfs`
57
- - `TSVZ` / `tsvz`
61
+ - `TSVZ` / `tsvz`
62
+ - `statblk`
58
63
 
59
64
  All with `--help` / `-h` provided.
60
65
 
@@ -71,4 +76,5 @@ GPL-3.0-or-later
71
76
  - [simple-iotest](https://github.com/yufei-pan/simple-iotest)
72
77
  - [statbtrfs](https://github.com/yufei-pan/statbtrfs)
73
78
  - [Tee_Logger](https://github.com/yufei-pan/Tee_Logger)
74
- - [TSVZ](https://github.com/yufei-pan/TSVZ)
79
+ - [TSVZ](https://github.com/yufei-pan/TSVZ)
80
+ - [statblk](https://github.com/yufei-pan/statblk)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cas-toolbox
3
- Version: 2025.45.1
3
+ Version: 2025.46.2
4
4
  Summary: Cluster Automation Scripts Toolbox
5
5
  Author-email: Yufei Pan <pan@zopyr.us>
6
6
  License: GPL-3.0-or-later
@@ -18,14 +18,14 @@ Classifier: Programming Language :: Python :: 3
18
18
  Classifier: Operating System :: POSIX :: Linux
19
19
  Requires-Python: >=3.6
20
20
  Description-Content-Type: text/markdown
21
- Requires-Dist: hpcp==9.38
21
+ Requires-Dist: hpcp==9.40
22
22
  Requires-Dist: multicmd==1.39
23
- Requires-Dist: multissh3==6.00
24
- Requires-Dist: simple-iotest==3.61.0
23
+ Requires-Dist: multissh3==6.04
24
+ Requires-Dist: simple-iotest==3.61.1
25
25
  Requires-Dist: statbtrfs==0.21
26
26
  Requires-Dist: tee-logger==6.37
27
27
  Requires-Dist: tsvz==3.30
28
- Requires-Dist: statblk==1.32
28
+ Requires-Dist: statblk==1.33
29
29
 
30
30
  # cas-toolbox
31
31
 
@@ -49,6 +49,7 @@ Cluster Automation Scripts Toolbox -
49
49
  - resource
50
50
  - prettytable
51
51
  - ipaddress
52
+ - numpy
52
53
 
53
54
  ## Includes following single file libs
54
55
  - hpcp.py
@@ -58,6 +59,7 @@ Cluster Automation Scripts Toolbox -
58
59
  - statbtrfs.py
59
60
  - Tee_Logger.py
60
61
  - TSVZ.py
62
+ - statblk.py
61
63
 
62
64
  ## Installation
63
65
  Use pip:
@@ -70,8 +72,10 @@ pipx install cas-toolbox
70
72
  ```
71
73
  Use uv:
72
74
  ```bash
73
- uv tool install cas-toolbox
75
+ uv tool install --with numpy cas-toolbox
74
76
  ```
77
+ Note: with numpy, iotest random number generator will perform much better. But it is not used anywhere else.
78
+
75
79
  Use uv to add as dependency:
76
80
  ```bash
77
81
  uv add cas-toolbox
@@ -83,7 +87,8 @@ uv add cas-toolbox
83
87
  - `mssh` / `mssh3` / `multissh` / `multissh3` / `multiSSH3`
84
88
  - `iotest`
85
89
  - `statbtrfs`
86
- - `TSVZ` / `tsvz`
90
+ - `TSVZ` / `tsvz`
91
+ - `statblk`
87
92
 
88
93
  All with `--help` / `-h` provided.
89
94
 
@@ -101,3 +106,4 @@ GPL-3.0-or-later
101
106
  - [statbtrfs](https://github.com/yufei-pan/statbtrfs)
102
107
  - [Tee_Logger](https://github.com/yufei-pan/Tee_Logger)
103
108
  - [TSVZ](https://github.com/yufei-pan/TSVZ)
109
+ - [statblk](https://github.com/yufei-pan/statblk)
@@ -0,0 +1,8 @@
1
+ hpcp==9.40
2
+ multicmd==1.39
3
+ multissh3==6.04
4
+ simple-iotest==3.61.1
5
+ statbtrfs==0.21
6
+ tee-logger==6.37
7
+ tsvz==3.30
8
+ statblk==1.33
@@ -1,18 +1,18 @@
1
1
  [project]
2
2
  name = "cas-toolbox"
3
- version = "2025.45.1"
3
+ version = "2025.46.2"
4
4
  description = "Cluster Automation Scripts Toolbox"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.6"
7
7
  dependencies = [
8
- "hpcp==9.38",
8
+ "hpcp==9.40",
9
9
  "multicmd==1.39",
10
- "multissh3==6.00",
11
- "simple-iotest==3.61.0",
10
+ "multissh3==6.04",
11
+ "simple-iotest==3.61.1",
12
12
  "statbtrfs==0.21",
13
13
  "tee-logger==6.37",
14
14
  "tsvz==3.30",
15
- "statblk==1.32",
15
+ "statblk==1.33",
16
16
  ]
17
17
  authors = [
18
18
  { name = "Yufei Pan", email = "pan@zopyr.us" }
@@ -1,8 +0,0 @@
1
- hpcp==9.38
2
- multicmd==1.39
3
- multissh3==6.00
4
- simple-iotest==3.61.0
5
- statbtrfs==0.21
6
- tee-logger==6.37
7
- tsvz==3.30
8
- statblk==1.32