datashare-python 0.9.7__tar.gz → 0.9.8__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.
- {datashare_python-0.9.7 → datashare_python-0.9.8}/PKG-INFO +1 -1
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/logging_.py +2 -4
- datashare_python-0.9.8/datashare_python/worker-template.tar.gz +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/pyproject.toml +1 -1
- datashare_python-0.9.7/datashare_python/worker-template.tar.gz +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/.gitignore +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/README.md +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/.gitignore +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/__init__.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/__main__.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/cli/__init__.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/cli/project.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/cli/task.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/cli/utils.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/cli/worker.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/config.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/conftest.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/constants.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/dependencies.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/discovery.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/exceptions.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/interceptors.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/objects.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/task_client.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/template.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/types_.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/utils.py +0 -0
- {datashare_python-0.9.7 → datashare_python-0.9.8}/datashare_python/worker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datashare-python
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.8
|
|
4
4
|
Summary: Manage Python tasks and local resources in Datashare
|
|
5
5
|
Project-URL: Homepage, https://icij.github.io/datashare-python/
|
|
6
6
|
Project-URL: Documentation, https://icij.github.io/datashare-python/
|
|
@@ -7,7 +7,7 @@ from typing import Any
|
|
|
7
7
|
|
|
8
8
|
from icij_common.logging_utils import DATE_FMT, STREAM_HANDLER_FMT
|
|
9
9
|
from pythonjsonlogger.core import BaseJsonFormatter
|
|
10
|
-
from pythonjsonlogger.
|
|
10
|
+
from pythonjsonlogger.json import JsonFormatter
|
|
11
11
|
from temporalio import activity, workflow
|
|
12
12
|
|
|
13
13
|
from .config import LogFormat, LogLevel
|
|
@@ -136,7 +136,5 @@ def _encode_value(value: Any) -> str:
|
|
|
136
136
|
|
|
137
137
|
|
|
138
138
|
def _json_formatter(datefmt: str) -> BaseJsonFormatter:
|
|
139
|
-
fmt =
|
|
140
|
-
_LOGGED_ATTRIBUTES, datefmt=datefmt
|
|
141
|
-
)
|
|
139
|
+
fmt = JsonFormatter(_LOGGED_ATTRIBUTES, datefmt=datefmt)
|
|
142
140
|
return fmt
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|