From baf08f29b9f31e56b54b7053d08b0a642a87bed9 Mon Sep 17 00:00:00 2001 From: "David C. Hansen" Date: Thu, 23 Mar 2023 09:53:04 +0100 Subject: [PATCH 1/6] Updated schema --- schema/ismrmrd.xsd | 82 ++++++++++++++++++++++++++++++++-------------- setup.py | 2 +- 2 files changed, 59 insertions(+), 25 deletions(-) diff --git a/schema/ismrmrd.xsd b/schema/ismrmrd.xsd index d07adbe..78bf187 100644 --- a/schema/ismrmrd.xsd +++ b/schema/ismrmrd.xsd @@ -22,7 +22,7 @@ - + @@ -67,7 +67,7 @@ - + @@ -123,7 +123,6 @@ - @@ -134,13 +133,6 @@ - - - - - - - @@ -174,14 +166,6 @@ - - - - - - - - @@ -221,6 +205,7 @@ + @@ -233,22 +218,44 @@ - + + + - + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -295,6 +302,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -327,6 +360,7 @@ + @@ -349,4 +383,4 @@ - + \ No newline at end of file diff --git a/setup.py b/setup.py index 47324e4..6e4a1c8 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ def to_uri(filename): setup( name='ismrmrd', - version='1.13.1', + version='1.14.0', author='ISMRMRD Developers', description='Python implementation of the ISMRMRD', license='Public Domain', From 8829b403f4f1adabf14ca99aea911f23d0d753b6 Mon Sep 17 00:00:00 2001 From: "David C. Hansen" Date: Mon, 27 Mar 2023 19:44:31 +0200 Subject: [PATCH 2/6] Updated xsdata requirements --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6e4a1c8..a104ca6 100644 --- a/setup.py +++ b/setup.py @@ -74,8 +74,8 @@ def to_uri(filename): 'Operating System :: OS Independent', 'Topic :: Scientific/Engineering :: Medical Science Apps.' ], - install_requires=['xsdata>=22.2', 'numpy>=1.22.0', 'h5py>=2.3'], - setup_requires=['nose>=1.0', 'xsdata[cli]>=22.2', 'jinja2 >= 2.11'], + install_requires=['xsdata>=22.12', 'numpy>=1.22.0', 'h5py>=2.3'], + setup_requires=['nose>=1.0', 'xsdata[cli]>=22.12', 'jinja2 >= 2.11'], test_suite='nose.collector', cmdclass={'build_py':my_build_py} ) From fb0124007982a9740adb9667477e314e5883fcae Mon Sep 17 00:00:00 2001 From: "David C. Hansen" Date: Mon, 27 Mar 2023 19:58:49 +0200 Subject: [PATCH 3/6] Updated conda --- conda/build.sh | 2 +- conda/meta.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conda/build.sh b/conda/build.sh index 16796e3..b190fdf 100755 --- a/conda/build.sh +++ b/conda/build.sh @@ -1,5 +1,5 @@ #!/bin/bash set -euo pipefail - +pip install xsdata[cli] pip install . diff --git a/conda/meta.yaml b/conda/meta.yaml index f16e82b..1151e6e 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -13,13 +13,13 @@ requirements: - numpy>=1.22.0 - h5py>=2.3 - nose>=1.0 - - xsdata>=22.2 run: - python - xsdata>=22.2 - numpy>=1.22.0 - h5py>=2.3 + - xsdata >= 22.2 test: source_files: From 043a8902151e8ca21c1ecf033b013320cc6db67f Mon Sep 17 00:00:00 2001 From: David Christoffer Hansen Date: Tue, 28 Mar 2023 08:44:52 +0200 Subject: [PATCH 4/6] Update meta.yaml --- conda/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index 1151e6e..4e496d6 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -19,7 +19,7 @@ requirements: - xsdata>=22.2 - numpy>=1.22.0 - h5py>=2.3 - - xsdata >= 22.2 + - xsdata>=22.2 test: source_files: @@ -35,4 +35,4 @@ about: Python interface and utilities for the ISMRM Raw Data (ISMRMRD a.k.a. MRD) format. dev_url: https://github.com/ismrmrd/ismrmrd-python doc_url: https://github.com/ismrmrd/ismrmrd-python - doc_source_url: https://github.com/ismrmrd/ismrmrd-python/blob/main/README.md \ No newline at end of file + doc_source_url: https://github.com/ismrmrd/ismrmrd-python/blob/main/README.md From 8c99617f66f11c9996a8524c1f2ae38ba1025589 Mon Sep 17 00:00:00 2001 From: David Christoffer Hansen Date: Mon, 24 Apr 2023 11:55:30 +0200 Subject: [PATCH 5/6] Update meta.yaml --- conda/meta.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conda/meta.yaml b/conda/meta.yaml index 4e496d6..022ef9d 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -13,6 +13,8 @@ requirements: - numpy>=1.22.0 - h5py>=2.3 - nose>=1.0 + - docformatter<=1.4 + - xsdata>=22.2 run: - python From e51e909404cf3148510924d862a4e0b9efb18d59 Mon Sep 17 00:00:00 2001 From: David Christoffer Hansen Date: Mon, 24 Apr 2023 11:55:46 +0200 Subject: [PATCH 6/6] Update build.sh --- conda/build.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/conda/build.sh b/conda/build.sh index b190fdf..51ac1bd 100755 --- a/conda/build.sh +++ b/conda/build.sh @@ -1,5 +1,4 @@ #!/bin/bash set -euo pipefail -pip install xsdata[cli] pip install .