datamint 1.6.3__tar.gz → 1.6.3.post1__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.
Potentially problematic release.
This version of datamint might be problematic. Click here for more details.
- {datamint-1.6.3 → datamint-1.6.3.post1}/PKG-INFO +1 -1
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/client_cmd_tools/datamint_upload.py +2 -1
- {datamint-1.6.3 → datamint-1.6.3.post1}/pyproject.toml +1 -1
- {datamint-1.6.3 → datamint-1.6.3.post1}/README.md +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/__init__.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/apihandler/annotation_api_handler.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/apihandler/api_handler.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/apihandler/base_api_handler.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/apihandler/dto/annotation_dto.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/apihandler/exp_api_handler.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/apihandler/root_api_handler.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/client_cmd_tools/__init__.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/client_cmd_tools/datamint_config.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/configs.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/dataset/__init__.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/dataset/base_dataset.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/dataset/dataset.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/examples/__init__.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/examples/example_projects.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/experiment/__init__.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/experiment/_patcher.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/experiment/experiment.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/logging.yaml +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/utils/logging_utils.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/utils/torchmetrics.py +0 -0
- {datamint-1.6.3 → datamint-1.6.3.post1}/datamint/utils/visualization.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: datamint
|
|
3
|
-
Version: 1.6.3
|
|
3
|
+
Version: 1.6.3.post1
|
|
4
4
|
Summary: A library for interacting with the Datamint API, designed for efficient data management, processing and Deep Learning workflows.
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -463,8 +463,9 @@ def _parse_args() -> tuple[Any, list[str], Optional[list[dict]], Optional[list[s
|
|
|
463
463
|
|
|
464
464
|
if args.verbose:
|
|
465
465
|
# Get the console handler and set to debug
|
|
466
|
+
print(logging.getLogger().handlers)
|
|
466
467
|
logging.getLogger().handlers[0].setLevel(logging.DEBUG)
|
|
467
|
-
logging.getLogger('datamint').
|
|
468
|
+
logging.getLogger('datamint').setLevel(logging.DEBUG)
|
|
468
469
|
_LOGGER.setLevel(logging.DEBUG)
|
|
469
470
|
_USER_LOGGER.setLevel(logging.DEBUG)
|
|
470
471
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "datamint"
|
|
3
3
|
description = "A library for interacting with the Datamint API, designed for efficient data management, processing and Deep Learning workflows."
|
|
4
|
-
version = "1.6.3"
|
|
4
|
+
version = "1.6.3-post1"
|
|
5
5
|
dynamic = ["dependencies"]
|
|
6
6
|
requires-python = ">=3.10"
|
|
7
7
|
readme = "README.md"
|
|
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
|