elastic-kernel 0.0.5__tar.gz → 0.0.6__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 (48) hide show
  1. {elastic_kernel-0.0.5/elastic_kernel.egg-info → elastic_kernel-0.0.6}/PKG-INFO +1 -1
  2. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6/elastic_kernel.egg-info}/PKG-INFO +1 -1
  3. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/mutation/fingerprint.py +1 -1
  4. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/notebook/checkpoint.py +0 -1
  5. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/pyproject.toml +1 -1
  6. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/LICENSE +0 -0
  7. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/MANIFEST.in +0 -0
  8. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/README.md +0 -0
  9. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_kernel/__init__.py +0 -0
  10. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_kernel/command.py +0 -0
  11. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_kernel/kernel.json +0 -0
  12. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_kernel/kernel.py +0 -0
  13. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_kernel.egg-info/SOURCES.txt +0 -0
  14. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_kernel.egg-info/dependency_links.txt +0 -0
  15. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_kernel.egg-info/entry_points.txt +0 -0
  16. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_kernel.egg-info/requires.txt +0 -0
  17. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_kernel.egg-info/top_level.txt +0 -0
  18. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/__init__.py +0 -0
  19. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/algorithm/__init__.py +0 -0
  20. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/algorithm/baseline.py +0 -0
  21. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/algorithm/optimizer_exact.py +0 -0
  22. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/algorithm/selector.py +0 -0
  23. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/__init__.py +0 -0
  24. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/common/__init__.py +0 -0
  25. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/common/checkpoint_file.py +0 -0
  26. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/common/profile_graph_size.py +0 -0
  27. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/common/profile_migration_speed.py +0 -0
  28. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/common/profile_variable_size.py +0 -0
  29. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/graph/__init__.py +0 -0
  30. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/graph/cell_execution.py +0 -0
  31. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/graph/graph.py +0 -0
  32. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/graph/variable_snapshot.py +0 -0
  33. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/io/__init__.py +0 -0
  34. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/io/adapter.py +0 -0
  35. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/io/filesystem_adapter.py +0 -0
  36. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/io/migrate.py +0 -0
  37. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/io/pickle.py +0 -0
  38. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/io/recover.py +0 -0
  39. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/mutation/__init__.py +0 -0
  40. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/mutation/id_graph.py +0 -0
  41. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/mutation/object_hash.py +0 -0
  42. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/notebook/__init__.py +0 -0
  43. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/notebook/find_input_vars.py +0 -0
  44. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/notebook/find_output_vars.py +0 -0
  45. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/notebook/restore_notebook.py +0 -0
  46. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/core/notebook/update_graph.py +0 -0
  47. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/elastic_notebook/elastic_notebook.py +0 -0
  48. {elastic_kernel-0.0.5 → elastic_kernel-0.0.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elastic-kernel
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: Elastic kernel for Jupyter with automatic checkpoint and dependency tracking
5
5
  Author-email: ryutarom <m2002r1028@icloud.com>
6
6
  License: Apache License
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elastic-kernel
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: Elastic kernel for Jupyter with automatic checkpoint and dependency tracking
5
5
  Author-email: ryutarom <m2002r1028@icloud.com>
6
6
  License: Apache License
@@ -160,7 +160,7 @@ def compare_fingerprint(
160
160
  changed = True
161
161
  uncomparable = True
162
162
  fingerprint_list[2] = UncomparableObj()
163
- except Exception as e:
163
+ except Exception:
164
164
  # Variable is uncomparable
165
165
  if id_set.intersection(input_variables_id_graph_union):
166
166
  changed = True
@@ -132,7 +132,6 @@ def checkpoint(
132
132
  vss_to_recompute = active_vss - vss_to_migrate
133
133
  difference_end = time.time()
134
134
 
135
-
136
135
  optimize_end = time.time()
137
136
  if write_log_location:
138
137
  with open(
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "elastic-kernel"
7
- version = "0.0.5"
7
+ version = "0.0.6"
8
8
  description = "Elastic kernel for Jupyter with automatic checkpoint and dependency tracking"
9
9
  authors = [
10
10
  { name = "ryutarom", email = "m2002r1028@icloud.com" }
File without changes
File without changes
File without changes