lamin_cli 0.17.7__tar.gz → 0.17.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.
Files changed (30) hide show
  1. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/PKG-INFO +1 -1
  2. lamin_cli-0.17.8/lamin_cli/__init__.py +3 -0
  3. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/lamin_cli/_load.py +4 -4
  4. lamin_cli-0.17.7/lamin_cli/__init__.py +0 -3
  5. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/.github/workflows/doc-changes.yml +0 -0
  6. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/.gitignore +0 -0
  7. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/.pre-commit-config.yaml +0 -0
  8. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/LICENSE +0 -0
  9. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/README.md +0 -0
  10. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/lamin_cli/__main__.py +0 -0
  11. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/lamin_cli/_cache.py +0 -0
  12. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/lamin_cli/_migration.py +0 -0
  13. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/lamin_cli/_save.py +0 -0
  14. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/lamin_cli/_settings.py +0 -0
  15. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/pyproject.toml +0 -0
  16. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/conftest.py +0 -0
  17. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/notebooks/not-initialized.ipynb +0 -0
  18. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/notebooks/with-title-and-initialized-consecutive.ipynb +0 -0
  19. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/notebooks/with-title-and-initialized-non-consecutive.ipynb +0 -0
  20. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/scripts/merely-import-lamindb.py +0 -0
  21. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/scripts/run-track-and-finish-sync-git.py +0 -0
  22. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/scripts/run-track-and-finish.py +0 -0
  23. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/scripts/run-track-with-params.py +0 -0
  24. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/test_cli.py +0 -0
  25. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/test_load.py +0 -0
  26. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/test_migrate.py +0 -0
  27. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/test_multi_process.py +0 -0
  28. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/test_save_files.py +0 -0
  29. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/test_save_notebooks.py +0 -0
  30. {lamin_cli-0.17.7 → lamin_cli-0.17.8}/tests/test_save_scripts.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lamin_cli
3
- Version: 0.17.7
3
+ Version: 0.17.8
4
4
  Summary: Lamin CLI.
5
5
  Author-email: Lamin Labs <open-source@lamin.ai>
6
6
  Description-Content-Type: text/markdown
@@ -0,0 +1,3 @@
1
+ """Lamin CLI."""
2
+
3
+ __version__ = "0.17.8"
@@ -56,10 +56,10 @@ def load(entity: str, uid: str = None, key: str = None, with_env: bool = False):
56
56
  .first()
57
57
  )
58
58
  target_filename = transform.key
59
- # if Path(target_filename).exists():
60
- # response = input(f"! {target_filename} exists: replace? (y/n)")
61
- # if response != "y":
62
- # raise SystemExit("Aborted.")
59
+ if Path(target_filename).exists():
60
+ response = input(f"! {target_filename} exists: replace? (y/n)")
61
+ if response != "y":
62
+ raise SystemExit("Aborted.")
63
63
  if transform._source_code_artifact_id is not None: # backward compat
64
64
  # need lamindb here to have .cache() available
65
65
  import lamindb as ln
@@ -1,3 +0,0 @@
1
- """Lamin CLI."""
2
-
3
- __version__ = "0.17.7"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes