peek-python 25.0.22__tar.gz → 25.0.23__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: peek-python
3
- Version: 25.0.22
3
+ Version: 25.0.23
4
4
  Summary: peek - like print, but easy
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/salabim/peek
@@ -34,7 +34,7 @@ import pprint
34
34
  import builtins
35
35
  import shutil
36
36
 
37
- __version__ = "25.0.22"
37
+ __version__ = "25.0.23"
38
38
 
39
39
  from pathlib import Path
40
40
 
@@ -50,9 +50,9 @@ else:
50
50
  colorama.just_fix_windows_console()
51
51
 
52
52
  try:
53
- import tomlib
53
+ import tomllib
54
54
  except ModuleNotFoundError:
55
- import tomli as tomlib
55
+ import tomli as tomllib
56
56
 
57
57
 
58
58
  class _Peek:
@@ -275,7 +275,7 @@ class _Peek:
275
275
  _Peek.in_read_toml_message = f" in reading {toml_file} or environment variable(s)"
276
276
  with open(toml_file, "r") as f:
277
277
  config_as_str = f.read()
278
- result.update(tomlib.loads(config_as_str))
278
+ result.update(tomllib.loads(config_as_str))
279
279
  break
280
280
  return result
281
281
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: peek-python
3
- Version: 25.0.22
3
+ Version: 25.0.23
4
4
  Summary: peek - like print, but easy
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/salabim/peek
@@ -10,7 +10,7 @@ authors = [
10
10
  { name = "Ruud van der Ham", email = "rt.van.der.ham@gmail.com" },
11
11
  ]
12
12
  description = "peek - like print, but easy"
13
- version = "25.0.22"
13
+ version = "25.0.23"
14
14
  readme = "README.md"
15
15
  requires-python = ">=3.9"
16
16
  dependencies = [
File without changes
File without changes