elastic-kernel 0.0.22__tar.gz → 0.0.26__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.22/elastic_kernel.egg-info → elastic_kernel-0.0.26}/PKG-INFO +1 -1
  2. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_kernel/kernel.json +1 -1
  3. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26/elastic_kernel.egg-info}/PKG-INFO +1 -1
  4. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/pyproject.toml +1 -1
  5. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/LICENSE +0 -0
  6. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/MANIFEST.in +0 -0
  7. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/README.md +0 -0
  8. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_kernel/__init__.py +0 -0
  9. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_kernel/command.py +0 -0
  10. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_kernel/kernel.py +0 -0
  11. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_kernel.egg-info/SOURCES.txt +0 -0
  12. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_kernel.egg-info/dependency_links.txt +0 -0
  13. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_kernel.egg-info/entry_points.txt +0 -0
  14. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_kernel.egg-info/requires.txt +0 -0
  15. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_kernel.egg-info/top_level.txt +0 -0
  16. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/__init__.py +0 -0
  17. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/algorithm/__init__.py +0 -0
  18. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/algorithm/baseline.py +0 -0
  19. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/algorithm/optimizer_exact.py +0 -0
  20. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/algorithm/selector.py +0 -0
  21. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/__init__.py +0 -0
  22. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/common/__init__.py +0 -0
  23. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/common/checkpoint_file.py +0 -0
  24. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/common/profile_graph_size.py +0 -0
  25. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/common/profile_migration_speed.py +0 -0
  26. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/common/profile_variable_size.py +0 -0
  27. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/graph/__init__.py +0 -0
  28. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/graph/cell_execution.py +0 -0
  29. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/graph/graph.py +0 -0
  30. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/graph/variable_snapshot.py +0 -0
  31. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/io/__init__.py +0 -0
  32. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/io/adapter.py +0 -0
  33. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/io/filesystem_adapter.py +0 -0
  34. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/io/migrate.py +0 -0
  35. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/io/pickle.py +0 -0
  36. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/io/recover.py +0 -0
  37. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/mutation/__init__.py +0 -0
  38. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/mutation/fingerprint.py +0 -0
  39. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/mutation/id_graph.py +0 -0
  40. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/mutation/object_hash.py +0 -0
  41. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/notebook/__init__.py +0 -0
  42. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/notebook/checkpoint.py +0 -0
  43. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/notebook/find_input_vars.py +0 -0
  44. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/notebook/find_output_vars.py +0 -0
  45. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/notebook/restore_notebook.py +0 -0
  46. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/core/notebook/update_graph.py +0 -0
  47. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/elastic_notebook/elastic_notebook.py +0 -0
  48. {elastic_kernel-0.0.22 → elastic_kernel-0.0.26}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elastic-kernel
3
- Version: 0.0.22
3
+ Version: 0.0.26
4
4
  Summary: An IPython Kernel that automatically saves and restores Jupyter Notebook execution states.
5
5
  Author-email: ryutarom <m2002r1028@icloud.com>
6
6
  License: Apache License
@@ -1,5 +1,5 @@
1
1
  {
2
- "display_name": "Python 3 (Elastic)",
2
+ "display_name": "Python 3 (ElasticKernel)",
3
3
  "language": "python",
4
4
  "argv": ["python", "-m", "elastic_kernel.kernel", "-f", "{connection_file}"]
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elastic-kernel
3
- Version: 0.0.22
3
+ Version: 0.0.26
4
4
  Summary: An IPython Kernel that automatically saves and restores Jupyter Notebook execution states.
5
5
  Author-email: ryutarom <m2002r1028@icloud.com>
6
6
  License: Apache License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "elastic-kernel"
7
- version = "0.0.22"
7
+ version = "0.0.26"
8
8
  description = "An IPython Kernel that automatically saves and restores Jupyter Notebook execution states."
9
9
  authors = [
10
10
  { name = "ryutarom", email = "m2002r1028@icloud.com" }
File without changes