str-to-obj 2024.4__tar.gz → 2024.5__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 (34) hide show
  1. {str_to_obj-2024.4 → str_to_obj-2024.5}/PKG-INFO +1 -1
  2. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/catalog/boolean.py +1 -1
  3. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/type/hint_tree.py +1 -1
  4. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/version.py +1 -1
  5. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj.egg-info/PKG-INFO +1 -1
  6. {str_to_obj-2024.4 → str_to_obj-2024.5}/MANIFEST.in +0 -0
  7. {str_to_obj-2024.4 → str_to_obj-2024.5}/README-COPYRIGHT-utf8.txt +0 -0
  8. {str_to_obj-2024.4 → str_to_obj-2024.5}/README-LICENCE-utf8.txt +0 -0
  9. {str_to_obj-2024.4 → str_to_obj-2024.5}/README.rst +0 -0
  10. {str_to_obj-2024.4 → str_to_obj-2024.5}/documentation/wiki/description.asciidoc +0 -0
  11. {str_to_obj-2024.4 → str_to_obj-2024.5}/pyproject.toml +0 -0
  12. {str_to_obj-2024.4 → str_to_obj-2024.5}/setup.cfg +0 -0
  13. {str_to_obj-2024.4 → str_to_obj-2024.5}/setup.py +0 -0
  14. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/__init__.py +0 -0
  15. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/catalog/callable.py +0 -0
  16. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/catalog/choices.py +0 -0
  17. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/catalog/collection.py +0 -0
  18. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/catalog/number.py +0 -0
  19. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/catalog/path.py +0 -0
  20. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/interface/console.py +0 -0
  21. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/main.py +0 -0
  22. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/runtime/type.py +0 -0
  23. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/runtime/value.py +0 -0
  24. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/task/casting.py +0 -0
  25. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/task/comparison.py +0 -0
  26. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/task/inspection.py +0 -0
  27. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/type/annotation.py +0 -0
  28. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/type/hint.py +0 -0
  29. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/type/type.py +0 -0
  30. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj/type/value.py +0 -0
  31. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj.egg-info/SOURCES.txt +0 -0
  32. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj.egg-info/dependency_links.txt +0 -0
  33. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj.egg-info/requires.txt +0 -0
  34. {str_to_obj-2024.4 → str_to_obj-2024.5}/str_to_obj.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: str-to-obj
3
- Version: 2024.4
3
+ Version: 2024.5
4
4
  Summary: Convert strings to Python objects guided by (potentially annotated) type hints
5
5
  Home-page: https://src.koda.cnrs.fr/eric.debreuve/str-to-obj/
6
6
  Author: Eric Debreuve
@@ -8,7 +8,7 @@ import dataclasses as d
8
8
  import typing as h
9
9
  from enum import Enum as enum_t
10
10
 
11
- from logger_36 import FormattedMessage
11
+ from logger_36.format import FormattedMessage
12
12
  from str_to_obj.type.annotation import annotation_t
13
13
  from str_to_obj.type.hint import annotated_hint_t
14
14
 
@@ -36,7 +36,7 @@ import re as regx
36
36
  import types as t
37
37
  import typing as h
38
38
 
39
- from logger_36 import FormattedMessage
39
+ from logger_36.format import FormattedMessage
40
40
  from str_to_obj.task.inspection import HintComponents
41
41
  from str_to_obj.type.annotation import annotation_t
42
42
  from str_to_obj.type.hint import (
@@ -4,7 +4,7 @@ Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2023
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
6
6
 
7
- __version__ = "2024.4"
7
+ __version__ = "2024.5"
8
8
 
9
9
 
10
10
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: str-to-obj
3
- Version: 2024.4
3
+ Version: 2024.5
4
4
  Summary: Convert strings to Python objects guided by (potentially annotated) type hints
5
5
  Home-page: https://src.koda.cnrs.fr/eric.debreuve/str-to-obj/
6
6
  Author: Eric Debreuve
File without changes
File without changes
File without changes
File without changes
File without changes