mlcflow 1.2.8__tar.gz → 1.2.9__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. {mlcflow-1.2.8 → mlcflow-1.2.9}/PKG-INFO +1 -1
  2. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/action.py +1 -1
  3. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlcflow.egg-info/PKG-INFO +1 -1
  4. {mlcflow-1.2.8 → mlcflow-1.2.9}/pyproject.toml +1 -1
  5. {mlcflow-1.2.8 → mlcflow-1.2.9}/LICENSE.md +0 -0
  6. {mlcflow-1.2.8 → mlcflow-1.2.9}/README.md +0 -0
  7. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/__init__.py +0 -0
  8. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/__main__.py +0 -0
  9. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/action_factory.py +0 -0
  10. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/cache_action.py +0 -0
  11. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/cfg_action.py +0 -0
  12. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/error_codes.py +0 -0
  13. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/experiment_action.py +0 -0
  14. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/index.py +0 -0
  15. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/item.py +0 -0
  16. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/logger.py +0 -0
  17. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/main.py +0 -0
  18. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/meta_schema.py +0 -0
  19. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/repo.py +0 -0
  20. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/repo_action.py +0 -0
  21. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/script_action.py +0 -0
  22. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlc/utils.py +0 -0
  23. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlcflow.egg-info/SOURCES.txt +0 -0
  24. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlcflow.egg-info/dependency_links.txt +0 -0
  25. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlcflow.egg-info/entry_points.txt +0 -0
  26. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlcflow.egg-info/requires.txt +0 -0
  27. {mlcflow-1.2.8 → mlcflow-1.2.9}/mlcflow.egg-info/top_level.txt +0 -0
  28. {mlcflow-1.2.8 → mlcflow-1.2.9}/setup.cfg +0 -0
  29. {mlcflow-1.2.8 → mlcflow-1.2.9}/tests/test_action_invalid_meta_entries.py +0 -0
  30. {mlcflow-1.2.8 → mlcflow-1.2.9}/tests/test_cache_mark_tmp.py +0 -0
  31. {mlcflow-1.2.8 → mlcflow-1.2.9}/tests/test_mlcflow_unix_installer.py +0 -0
  32. {mlcflow-1.2.8 → mlcflow-1.2.9}/tests/test_repo_action_extra_git_args.py +0 -0
  33. {mlcflow-1.2.8 → mlcflow-1.2.9}/tests/test_script_action_apptainer.py +0 -0
  34. {mlcflow-1.2.8 → mlcflow-1.2.9}/tests/test_unix_installer_venv.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlcflow
3
- Version: 1.2.8
3
+ Version: 1.2.9
4
4
  Summary: An automation interface tailored for CPU/GPU benchmarking
5
5
  Author-email: MLCommons <systems@mlcommons.org>
6
6
  License:
@@ -484,7 +484,7 @@ class Action:
484
484
  target_name = i.get('target_name', i.get('target', "cache"))
485
485
  i['target_name'] = target_name
486
486
  ii = i.copy()
487
- quiet = ii.get('quiet', sys.stdin.isatty())
487
+ quiet = ii.get('quiet', not sys.stdin.isatty())
488
488
 
489
489
  if i.get('search_tags'):
490
490
  ii['tags'] = ",".join(i['search_tags'])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlcflow
3
- Version: 1.2.8
3
+ Version: 1.2.9
4
4
  Summary: An automation interface tailored for CPU/GPU benchmarking
5
5
  Author-email: MLCommons <systems@mlcommons.org>
6
6
  License:
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "mlcflow"
7
- version = "1.2.8"
7
+ version = "1.2.9"
8
8
 
9
9
  description = "An automation interface tailored for CPU/GPU benchmarking"
10
10
  authors = [
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