Skip to content

Commit 0553496

Browse files
chore(deps): update from template
1 parent 8c40812 commit 0553496

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_commit: v0.16.11
1+
_commit: v0.16.12
22
_src_path: gh:helmut-hoffer-von-ankershoffen/oe-python-template
33
attestations_enabled: true
44
author_email: helmuthva@gmail.com

ATTRIBUTIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12189,7 +12189,7 @@ License: LGPL-2.1-or-later
1218912189

1219012190
```
1219112191

12192-
## oe-python-template-example (0.4.19) - MIT License
12192+
## oe-python-template-example (0.4.20) - MIT License
1219312193

1219412194
🧠 Example project scaffolded and kept up to date with OE Python Template (oe-python-template).
1219512195

CLI_REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ $ oe-python-template-example [OPTIONS] COMMAND [ARGS]...
1414
* `--show-completion`: Show completion for the current shell, to copy it or customize the installation.
1515
* `--help`: Show this message and exit.
1616

17-
🧠 OE Python Template Example v0.4.19 - built with love in Berlin 🐻
17+
🧠 OE Python Template Example v0.4.20 - built with love in Berlin 🐻
1818

1919
**Commands**:
2020

src/oe_python_template_example/system/_service.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,11 @@ def info(include_environ: bool = False, filter_secrets: bool = True) -> dict[str
192192
"arch": platform.machine(),
193193
"processor": platform.processor(),
194194
"count": os.cpu_count(),
195-
"frequency": psutil.cpu_freq(),
195+
"frequency": {
196+
"current": psutil.cpu_freq().max,
197+
"min": psutil.cpu_freq().max,
198+
"max": psutil.cpu_freq().max,
199+
},
196200
},
197201
"memory": {
198202
"percent": vmem.percent,

0 commit comments

Comments
 (0)