computation-graph 68__tar.gz → 70__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 (38) hide show
  1. {computation_graph-68 → computation_graph-70}/PKG-INFO +1 -1
  2. {computation_graph-68 → computation_graph-70}/computation_graph.egg-info/PKG-INFO +1 -1
  3. {computation_graph-68 → computation_graph-70}/setup.py +1 -1
  4. {computation_graph-68 → computation_graph-70}/LICENSE.md +0 -0
  5. {computation_graph-68 → computation_graph-70}/README.md +0 -0
  6. {computation_graph-68 → computation_graph-70}/computation_graph/__init__.py +0 -0
  7. {computation_graph-68 → computation_graph-70}/computation_graph/base_types.py +0 -0
  8. {computation_graph-68 → computation_graph-70}/computation_graph/composers/__init__.py +0 -0
  9. {computation_graph-68 → computation_graph-70}/computation_graph/composers/composers_test.py +0 -0
  10. {computation_graph-68 → computation_graph-70}/computation_graph/composers/condition.py +0 -0
  11. {computation_graph-68 → computation_graph-70}/computation_graph/composers/condition_test.py +0 -0
  12. {computation_graph-68 → computation_graph-70}/computation_graph/composers/debug.py +0 -0
  13. {computation_graph-68 → computation_graph-70}/computation_graph/composers/duplication.py +0 -0
  14. {computation_graph-68 → computation_graph-70}/computation_graph/composers/lift.py +0 -0
  15. {computation_graph-68 → computation_graph-70}/computation_graph/composers/lift_test.py +0 -0
  16. {computation_graph-68 → computation_graph-70}/computation_graph/composers/logic.py +0 -0
  17. {computation_graph-68 → computation_graph-70}/computation_graph/composers/memory.py +0 -0
  18. {computation_graph-68 → computation_graph-70}/computation_graph/composers/memory_test.py +0 -0
  19. {computation_graph-68 → computation_graph-70}/computation_graph/graph.py +0 -0
  20. {computation_graph-68 → computation_graph-70}/computation_graph/graph_runners.py +0 -0
  21. {computation_graph-68 → computation_graph-70}/computation_graph/graph_test.py +0 -0
  22. {computation_graph-68 → computation_graph-70}/computation_graph/infer_sink.py +0 -0
  23. {computation_graph-68 → computation_graph-70}/computation_graph/infer_sink_test.py +0 -0
  24. {computation_graph-68 → computation_graph-70}/computation_graph/legacy.py +0 -0
  25. {computation_graph-68 → computation_graph-70}/computation_graph/run.py +0 -0
  26. {computation_graph-68 → computation_graph-70}/computation_graph/signature.py +0 -0
  27. {computation_graph-68 → computation_graph-70}/computation_graph/trace/__init__.py +0 -0
  28. {computation_graph-68 → computation_graph-70}/computation_graph/trace/ascii.py +0 -0
  29. {computation_graph-68 → computation_graph-70}/computation_graph/trace/graphviz.py +0 -0
  30. {computation_graph-68 → computation_graph-70}/computation_graph/trace/graphviz_test.py +0 -0
  31. {computation_graph-68 → computation_graph-70}/computation_graph/trace/mermaid.py +0 -0
  32. {computation_graph-68 → computation_graph-70}/computation_graph/trace/trace_utils.py +0 -0
  33. {computation_graph-68 → computation_graph-70}/computation_graph.egg-info/SOURCES.txt +0 -0
  34. {computation_graph-68 → computation_graph-70}/computation_graph.egg-info/dependency_links.txt +0 -0
  35. {computation_graph-68 → computation_graph-70}/computation_graph.egg-info/requires.txt +0 -0
  36. {computation_graph-68 → computation_graph-70}/computation_graph.egg-info/top_level.txt +0 -0
  37. {computation_graph-68 → computation_graph-70}/pyproject.toml +0 -0
  38. {computation_graph-68 → computation_graph-70}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: computation-graph
3
- Version: 68
3
+ Version: 70
4
4
  Requires-Python: >=3
5
5
  Description-Content-Type: text/markdown
6
6
  License-File: LICENSE.md
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: computation-graph
3
- Version: 68
3
+ Version: 70
4
4
  Requires-Python: >=3
5
5
  Description-Content-Type: text/markdown
6
6
  License-File: LICENSE.md
@@ -7,7 +7,7 @@ with open("README.md", "r") as fh:
7
7
  setuptools.setup(
8
8
  name="computation-graph",
9
9
  python_requires=">=3",
10
- version="68",
10
+ version="70",
11
11
  long_description=_LONG_DESCRIPTION,
12
12
  long_description_content_type="text/markdown",
13
13
  packages=setuptools.find_namespace_packages(),
File without changes
File without changes