thds.mops 3.7.20250411181109__py3-none-any.whl → 3.7.20250415142111__py3-none-any.whl
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.
Potentially problematic release.
This version of thds.mops might be problematic. Click here for more details.
- thds/mops/pure/tools/summarize/run_summary.py +10 -3
- {thds_mops-3.7.20250411181109.dist-info → thds_mops-3.7.20250415142111.dist-info}/METADATA +1 -1
- {thds_mops-3.7.20250411181109.dist-info → thds_mops-3.7.20250415142111.dist-info}/RECORD +6 -6
- {thds_mops-3.7.20250411181109.dist-info → thds_mops-3.7.20250415142111.dist-info}/WHEEL +0 -0
- {thds_mops-3.7.20250411181109.dist-info → thds_mops-3.7.20250415142111.dist-info}/entry_points.txt +0 -0
- {thds_mops-3.7.20250411181109.dist-info → thds_mops-3.7.20250415142111.dist-info}/top_level.txt +0 -0
|
@@ -108,9 +108,16 @@ def log_function_execution(
|
|
|
108
108
|
return
|
|
109
109
|
|
|
110
110
|
log_file = _generate_log_filename(run_directory)
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
111
|
+
try:
|
|
112
|
+
func_module = func.__module__
|
|
113
|
+
func_name = func.__name__
|
|
114
|
+
full_function_name = f"{func_module}:{func_name}"
|
|
115
|
+
except AttributeError:
|
|
116
|
+
# this is incompatible with callables that aren't defs, e.g. callable objects
|
|
117
|
+
# you can make this work by using functools.wraps/update_wrapper, but then `mops` will unpickle your
|
|
118
|
+
# callable using `__module__` and `__name__`, which just gives you back the wrapped, and the wrapper is lost
|
|
119
|
+
logger.warning("couldn't extract function module and name from %s", func)
|
|
120
|
+
full_function_name = str(func)
|
|
114
121
|
|
|
115
122
|
parts = function_memospace.parse_memo_uri(memo_uri, runner_prefix)
|
|
116
123
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: thds.mops
|
|
3
|
-
Version: 3.7.
|
|
3
|
+
Version: 3.7.20250415142111
|
|
4
4
|
Summary: ML Ops tools for Trilliant Health
|
|
5
5
|
Author-email: Trilliant Health <info@trillianthealth.com>
|
|
6
6
|
Project-URL: Repository, https://github.com/TrilliantHealth/ds-monorepo
|
|
@@ -100,11 +100,11 @@ thds/mops/pure/tools/sha256_b64_addressed.py,sha256=SECAiw3xSqpsrBBZix0MgJRTQrbH
|
|
|
100
100
|
thds/mops/pure/tools/stress.py,sha256=f7pL5n9BmVYSZrmDJxKnUC70AIfeHhU5B9E9UDs5GJ8,2544
|
|
101
101
|
thds/mops/pure/tools/summarize/__init__.py,sha256=MSmt_5Xg84uHqzTN38JwgseJK8rsJn_11A8WD99VtEo,61
|
|
102
102
|
thds/mops/pure/tools/summarize/cli.py,sha256=gaechsJhRZsOxGJGG1dQsW5dMBlgSv2sUmExOloDtkI,10828
|
|
103
|
-
thds/mops/pure/tools/summarize/run_summary.py,sha256=
|
|
103
|
+
thds/mops/pure/tools/summarize/run_summary.py,sha256=ujJC24J0XsF5W5P-eHiIq-4gmedmFXk2g1uljuvqOvc,5373
|
|
104
104
|
thds/mops/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
105
|
thds/mops/testing/deferred_imports.py,sha256=f0ezCgQAtzTqW1yAOb0OWgsB9ZrlztLB894LtpWDaVw,3780
|
|
106
|
-
thds_mops-3.7.
|
|
107
|
-
thds_mops-3.7.
|
|
108
|
-
thds_mops-3.7.
|
|
109
|
-
thds_mops-3.7.
|
|
110
|
-
thds_mops-3.7.
|
|
106
|
+
thds_mops-3.7.20250415142111.dist-info/METADATA,sha256=B6jOLGS1VNmbPUHwMYw-A27O4B6XPZbMCH1KUbR5zyM,2158
|
|
107
|
+
thds_mops-3.7.20250415142111.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
108
|
+
thds_mops-3.7.20250415142111.dist-info/entry_points.txt,sha256=GShNqjcjbq0TAJuwpyeCI5XCltiwdZxnNHkBpmYbNkU,329
|
|
109
|
+
thds_mops-3.7.20250415142111.dist-info/top_level.txt,sha256=LTZaE5SkWJwv9bwOlMbIhiS-JWQEEIcjVYnJrt-CriY,5
|
|
110
|
+
thds_mops-3.7.20250415142111.dist-info/RECORD,,
|
|
File without changes
|
{thds_mops-3.7.20250411181109.dist-info → thds_mops-3.7.20250415142111.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{thds_mops-3.7.20250411181109.dist-info → thds_mops-3.7.20250415142111.dist-info}/top_level.txt
RENAMED
|
File without changes
|