ml-dash 0.6.16__tar.gz → 0.6.17__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 (37) hide show
  1. {ml_dash-0.6.16 → ml_dash-0.6.17}/PKG-INFO +2 -2
  2. {ml_dash-0.6.16 → ml_dash-0.6.17}/pyproject.toml +2 -2
  3. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/__init__.py +1 -1
  4. {ml_dash-0.6.16 → ml_dash-0.6.17}/LICENSE +0 -0
  5. {ml_dash-0.6.16 → ml_dash-0.6.17}/README.md +0 -0
  6. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/auth/__init__.py +0 -0
  7. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/auth/constants.py +0 -0
  8. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/auth/device_flow.py +0 -0
  9. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/auth/device_secret.py +0 -0
  10. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/auth/exceptions.py +0 -0
  11. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/auth/token_storage.py +0 -0
  12. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/auto_start.py +0 -0
  13. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/buffer.py +0 -0
  14. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli.py +0 -0
  15. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/__init__.py +0 -0
  16. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/api.py +0 -0
  17. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/create.py +0 -0
  18. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/download.py +0 -0
  19. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/list.py +0 -0
  20. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/login.py +0 -0
  21. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/logout.py +0 -0
  22. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/profile.py +0 -0
  23. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/remove.py +0 -0
  24. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/cli_commands/upload.py +0 -0
  25. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/client.py +0 -0
  26. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/config.py +0 -0
  27. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/experiment.py +0 -0
  28. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/files.py +0 -0
  29. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/log.py +0 -0
  30. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/metric.py +0 -0
  31. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/params.py +0 -0
  32. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/py.typed +0 -0
  33. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/remote_auto_start.py +0 -0
  34. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/run.py +0 -0
  35. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/snowflake.py +0 -0
  36. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/storage.py +0 -0
  37. {ml_dash-0.6.16 → ml_dash-0.6.17}/src/ml_dash/track.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ml-dash
3
- Version: 0.6.16
3
+ Version: 0.6.17
4
4
  Summary: ML experiment tracking and data storage
5
5
  Keywords: machine-learning,experiment-tracking,mlops,data-storage
6
6
  Author: Ge Yang, Tom Tao
@@ -43,7 +43,7 @@ Requires-Dist: imageio-ffmpeg>=0.4.9
43
43
  Requires-Dist: scikit-image>=0.21.0
44
44
  Requires-Dist: rich>=13.0.0
45
45
  Requires-Dist: cryptography>=42.0.0
46
- Requires-Dist: params-proto>=3.0.0
46
+ Requires-Dist: params-proto>=3.0.0,<3.2.0
47
47
  Requires-Dist: keyring>=25.0.0 ; extra == 'auth'
48
48
  Requires-Dist: qrcode>=8.0.0 ; extra == 'auth'
49
49
  Requires-Dist: pytest>=8.0.0 ; extra == 'dev'
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ml-dash"
3
- version = "0.6.16"
3
+ version = "0.6.17"
4
4
  description = "ML experiment tracking and data storage"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.9"
@@ -31,7 +31,7 @@ dependencies = [
31
31
  "scikit-image>=0.21.0",
32
32
  "rich>=13.0.0",
33
33
  "cryptography>=42.0.0",
34
- "params-proto>=3.0.0",
34
+ "params-proto>=3.0.0,<3.2.0",
35
35
  ]
36
36
 
37
37
  [project.scripts]
@@ -43,7 +43,7 @@ from .params import ParametersBuilder
43
43
  from .run import RUN
44
44
  from .storage import LocalStorage
45
45
 
46
- __version__ = "0.6.16"
46
+ __version__ = "0.6.17"
47
47
 
48
48
 
49
49
  def _check_version_compatibility():
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