implica 0.3.0__tar.gz → 0.3.1__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.

Potentially problematic release.


This version of implica might be problematic. Click here for more details.

Files changed (26) hide show
  1. {implica-0.3.0 → implica-0.3.1}/PKG-INFO +1 -1
  2. {implica-0.3.0 → implica-0.3.1}/pyproject.toml +1 -1
  3. {implica-0.3.0 → implica-0.3.1}/src/implica/__init__.py +1 -1
  4. {implica-0.3.0 → implica-0.3.1}/LICENSE +0 -0
  5. {implica-0.3.0 → implica-0.3.1}/README.md +0 -0
  6. {implica-0.3.0 → implica-0.3.1}/src/implica/core/__init__.py +0 -0
  7. {implica-0.3.0 → implica-0.3.1}/src/implica/core/combinator.py +0 -0
  8. {implica-0.3.0 → implica-0.3.1}/src/implica/core/types.py +0 -0
  9. {implica-0.3.0 → implica-0.3.1}/src/implica/graph/__init__.py +0 -0
  10. {implica-0.3.0 → implica-0.3.1}/src/implica/graph/connection.py +0 -0
  11. {implica-0.3.0 → implica-0.3.1}/src/implica/graph/elements.py +0 -0
  12. {implica-0.3.0 → implica-0.3.1}/src/implica/graph/graph.py +0 -0
  13. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/__init__.py +0 -0
  14. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/add_edge.py +0 -0
  15. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/add_many_edges.py +0 -0
  16. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/add_many_nodes.py +0 -0
  17. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/add_node.py +0 -0
  18. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/base.py +0 -0
  19. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/remove_edge.py +0 -0
  20. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/remove_many_edges.py +0 -0
  21. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/remove_many_nodes.py +0 -0
  22. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/remove_node.py +0 -0
  23. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/try_add_edge.py +0 -0
  24. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/try_add_node.py +0 -0
  25. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/try_remove_edge.py +0 -0
  26. {implica-0.3.0 → implica-0.3.1}/src/implica/mutations/try_remove_node.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: implica
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: A package for working with graphs representing minimal implicational logic models
5
5
  Author: Carlos Fernandez
6
6
  Author-email: carlos.ferlo@outlook.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "implica"
3
- version = "0.3.0"
3
+ version = "0.3.1"
4
4
  description = "A package for working with graphs representing minimal implicational logic models"
5
5
  authors = ["Carlos Fernandez <carlos.ferlo@outlook.com>"]
6
6
  readme = "README.md"
@@ -41,4 +41,4 @@ __all__ = [
41
41
  "mutations",
42
42
  ]
43
43
 
44
- __version__ = "0.3.0"
44
+ __version__ = "0.3.1"
File without changes
File without changes