mrd-python 2.0.0rc3__tar.gz → 2.0.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.
Files changed (25) hide show
  1. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/PKG-INFO +1 -1
  2. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/_binary.py +6 -0
  3. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd_python.egg-info/PKG-INFO +1 -1
  4. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/README.md +0 -0
  5. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/__init__.py +0 -0
  6. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/_dtypes.py +0 -0
  7. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/_ndjson.py +0 -0
  8. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/binary.py +0 -0
  9. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/ndjson.py +0 -0
  10. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/protocols.py +0 -0
  11. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/tools/export_png_images.py +0 -0
  12. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/tools/minimal_example.py +0 -0
  13. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/tools/phantom.py +0 -0
  14. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/tools/simulation.py +0 -0
  15. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/tools/stream_recon.py +0 -0
  16. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/tools/transform.py +0 -0
  17. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/types.py +0 -0
  18. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd/yardl_types.py +0 -0
  19. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd_python.egg-info/SOURCES.txt +0 -0
  20. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd_python.egg-info/dependency_links.txt +0 -0
  21. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd_python.egg-info/requires.txt +0 -0
  22. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/mrd_python.egg-info/top_level.txt +0 -0
  23. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/pyproject.toml +0 -0
  24. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/setup.cfg +0 -0
  25. {mrd_python-2.0.0rc3 → mrd_python-2.0.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mrd-python
3
- Version: 2.0.0rc3
3
+ Version: 2.0.1
4
4
  Summary: Library and tools for working with data in the ISMRM Raw Data (MRD) format.
5
5
  Project-URL: Homepage, https://ismrmrd.github.io/mrd
6
6
  Project-URL: Documentation, https://ismrmrd.github.io/mrd
@@ -628,6 +628,9 @@ class Complex32Serializer(StructSerializer[ComplexFloat, np.complex64]):
628
628
  def write(self, stream: CodedOutputStream, value: ComplexFloat) -> None:
629
629
  stream.write(self._struct, value.real, value.imag)
630
630
 
631
+ def write_numpy(self, stream: CodedOutputStream, value: np.complex64) -> None:
632
+ stream.write(self._struct, value.real, value.imag)
633
+
631
634
  def read(self, stream: CodedInputStream) -> ComplexFloat:
632
635
  return ComplexFloat(*stream.read(self._struct))
633
636
 
@@ -649,6 +652,9 @@ class Complex64Serializer(StructSerializer[ComplexDouble, np.complex128]):
649
652
  def write(self, stream: CodedOutputStream, value: ComplexDouble) -> None:
650
653
  stream.write(self._struct, value.real, value.imag)
651
654
 
655
+ def write_numpy(self, stream: CodedOutputStream, value: np.complex128) -> None:
656
+ stream.write(self._struct, value.real, value.imag)
657
+
652
658
  def read(self, stream: CodedInputStream) -> ComplexDouble:
653
659
  return ComplexDouble(*stream.read(self._struct))
654
660
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mrd-python
3
- Version: 2.0.0rc3
3
+ Version: 2.0.1
4
4
  Summary: Library and tools for working with data in the ISMRM Raw Data (MRD) format.
5
5
  Project-URL: Homepage, https://ismrmrd.github.io/mrd
6
6
  Project-URL: Documentation, https://ismrmrd.github.io/mrd
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes