syrtis-python-graph 0.0.4__tar.gz → 0.0.5__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 (17) hide show
  1. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/PKG-INFO +2 -2
  2. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/README.md +1 -1
  3. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/pyproject.toml +1 -1
  4. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/__init__.py +0 -0
  5. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/checker/__init__.py +0 -0
  6. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/checker/graph_readiness_checker.py +0 -0
  7. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/contract/__init__.py +0 -0
  8. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/contract/graph_edge_interface.py +0 -0
  9. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/contract/graph_node_interface.py +0 -0
  10. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/detector/__init__.py +0 -0
  11. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/detector/graph_cycle_detector.py +0 -0
  12. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/model/__init__.py +0 -0
  13. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/model/cycle_detection_result.py +0 -0
  14. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/model/graph_definition.py +0 -0
  15. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/py.typed +0 -0
  16. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/resolver/__init__.py +0 -0
  17. {syrtis_python_graph-0.0.4 → syrtis_python_graph-0.0.5}/src/syrtis_python_graph/resolver/graph_resolver.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: syrtis-python-graph
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Author-Email: weeger <contact@syrtis.ai>
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -14,7 +14,7 @@ Description-Content-Type: text/markdown
14
14
 
15
15
  # syrtis-python-graph
16
16
 
17
- Version: 0.0.4
17
+ Version: 0.0.5
18
18
 
19
19
  ## Table of Contents
20
20
 
@@ -1,6 +1,6 @@
1
1
  # syrtis-python-graph
2
2
 
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
 
5
5
  ## Table of Contents
6
6
 
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "syrtis-python-graph"
9
- version = "0.0.4"
9
+ version = "0.0.5"
10
10
  authors = [
11
11
  { name = "weeger", email = "contact@syrtis.ai" },
12
12
  ]