bigraph-schema 0.0.64__tar.gz → 0.0.65__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 bigraph-schema might be problematic. Click here for more details.

Files changed (37) hide show
  1. {bigraph-schema-0.0.64/bigraph_schema.egg-info → bigraph-schema-0.0.65}/PKG-INFO +1 -1
  2. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/edge.py +2 -2
  3. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65/bigraph_schema.egg-info}/PKG-INFO +1 -1
  4. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/pyproject.toml +1 -1
  5. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/setup.py +1 -1
  6. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/.github/workflows/notebook_to_html.yml +0 -0
  7. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/.github/workflows/pytest.yml +0 -0
  8. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/.gitignore +0 -0
  9. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/AUTHORS.md +0 -0
  10. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/CLA.md +0 -0
  11. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/CODE_OF_CONDUCT.md +0 -0
  12. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/CONTRIBUTING.md +0 -0
  13. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/LICENSE +0 -0
  14. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/README.md +0 -0
  15. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/__init__.py +0 -0
  16. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/parse.py +0 -0
  17. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/protocols.py +0 -0
  18. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/registry.py +0 -0
  19. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/tests.py +0 -0
  20. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/type_functions.py +0 -0
  21. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/type_system.py +0 -0
  22. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/type_system_adjunct.py +0 -0
  23. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/units.py +0 -0
  24. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema/utilities.py +0 -0
  25. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema.egg-info/SOURCES.txt +0 -0
  26. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema.egg-info/dependency_links.txt +0 -0
  27. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema.egg-info/requires.txt +0 -0
  28. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/bigraph_schema.egg-info/top_level.txt +0 -0
  29. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/notebooks/core.ipynb +0 -0
  30. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/notebooks/demo.ipynb +0 -0
  31. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/notebooks/images/place-link.png +0 -0
  32. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/notebooks/images/reaction-after.png +0 -0
  33. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/notebooks/images/reaction-before.png +0 -0
  34. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/notebooks/images/redex-reactum.png +0 -0
  35. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/pytest.ini +0 -0
  36. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/release.sh +0 -0
  37. {bigraph-schema-0.0.64 → bigraph-schema-0.0.65}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bigraph-schema
3
- Version: 0.0.64
3
+ Version: 0.0.65
4
4
  Summary: A serializable type schema for compositional systems biology
5
5
  Home-page: https://github.com/vivarium-collective/bigraph-schema
6
6
  Author: Eran Agmon, Ryan Spangler
@@ -49,8 +49,8 @@ class Edge:
49
49
  self.config = self.core.fill(self.config_schema, config)
50
50
  self.initialize(self.config)
51
51
 
52
- # Register port types
53
- self.register_interface()
52
+ # # Register port types
53
+ # self.register_interface()
54
54
 
55
55
  def initialize(self, config):
56
56
  """Optional hook for subclass-specific initialization."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bigraph-schema
3
- Version: 0.0.64
3
+ Version: 0.0.65
4
4
  Summary: A serializable type schema for compositional systems biology
5
5
  Home-page: https://github.com/vivarium-collective/bigraph-schema
6
6
  Author: Eran Agmon, Ryan Spangler
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "bigraph-schema"
3
- version = "0.0.64"
3
+ version = "0.0.65"
4
4
  description = "A serializable type schema for compositional systems biology"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.7"
@@ -1,7 +1,7 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
3
 
4
- VERSION = '0.0.64'
4
+ VERSION = '0.0.65'
5
5
 
6
6
 
7
7
  with open("README.md", "r") as readme:
File without changes
File without changes