iris-pex-embedded-python 2.1.0__tar.gz → 2.1.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 iris-pex-embedded-python might be problematic. Click here for more details.

Files changed (26) hide show
  1. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/PKG-INFO +1 -1
  2. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/setup.py +1 -1
  3. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_business_host.py +3 -1
  4. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/PKG-INFO +1 -1
  5. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/LICENSE +0 -0
  6. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/README.md +0 -0
  7. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/pyproject.toml +0 -0
  8. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/setup.cfg +0 -0
  9. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/iris/__init__.py +0 -0
  10. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/__init__.py +0 -0
  11. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_business_operation.py +0 -0
  12. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_business_process.py +0 -0
  13. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_business_service.py +0 -0
  14. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_common.py +0 -0
  15. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_director.py +0 -0
  16. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_inbound_adapter.py +0 -0
  17. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_message.py +0 -0
  18. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_outbound_adapter.py +0 -0
  19. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_pickle_message.py +0 -0
  20. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_private_session_duplex.py +0 -0
  21. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_private_session_process.py +0 -0
  22. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_utils.py +0 -0
  23. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/SOURCES.txt +0 -0
  24. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/dependency_links.txt +0 -0
  25. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/requires.txt +0 -0
  26. {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: iris_pex_embedded_python
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Summary: iris_pex_embedded_python
5
5
  Home-page: https://github.com/grongierisc/interoperability-embedded-python
6
6
  Author: grongier
@@ -26,7 +26,7 @@ def main():
26
26
  description='iris_pex_embedded_python',
27
27
  long_description=long_description,
28
28
  long_description_content_type='text/markdown',
29
- version='2.1.0',
29
+ version='2.1.1',
30
30
  author='grongier',
31
31
  author_email='guillaume.rongier@intersystems.com',
32
32
  keywords='iris_pex_embedded_python',
@@ -156,7 +156,9 @@ class _BusinessHost(_Common):
156
156
  elif (message is not None and self._is_iris_object_instance(message)):
157
157
  return message
158
158
  else:
159
- raise TypeError("The message must be an instance of a class that is a subclass of Message or IRISObject %Persistent class.")
159
+ # todo : decorator takes care of all the parameters, so this should never happen
160
+ return message
161
+ #raise TypeError("The message must be an instance of a class that is a subclass of Message or IRISObject %Persistent class.")
160
162
 
161
163
  def _serialize_message(self,message):
162
164
  """ Converts a python dataclass message into an iris grongier.pex.message.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: iris-pex-embedded-python
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Summary: iris_pex_embedded_python
5
5
  Home-page: https://github.com/grongierisc/interoperability-embedded-python
6
6
  Author: grongier