Skip to content

Commit

Permalink
Merge branch 'refactor_24' of https://github.com/SasView/sasdata into…
Browse files Browse the repository at this point in the history
… refactor_24
  • Loading branch information
lucas-wilkins committed Oct 1, 2024
2 parents dff1f4d + 32cbb1f commit b661ffd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/ci.yml
**/test.yml
**/requirements*.txt
### Installation of build-dependencies
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Data import/export requirements
h5py
lxml < 5.0
lxml

# Calculation
numpy==1.*
Expand Down
24 changes: 12 additions & 12 deletions sasdata/dataloader/readers/schema/cansas1d_invalid_v1_0.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,19 @@ in the file LICENSE that is included with this distribution.
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->

<complexType name="SASentryType">
<sequence>
<xsd:any minOccurs="0" maxOccurs="unbounded" processContents="lax" />
<xsd:choice minOccurs="1" maxOccurs="unbounded">
<element name="Title" minOccurs="0" maxOccurs="unbounded" type="string" />
<element name="Run" minOccurs="0" maxOccurs="unbounded" />
<element name="SASdata" minOccurs="1" maxOccurs="unbounded" type="tns:SASdataType" />
<xsd:any minOccurs="0" maxOccurs="unbounded" processContents="lax">
<!-- Is a second *any* element needed here? -->
<annotation>
<appinfo>
<!-- Remap collision of Any when using JAXB -->
<jaxb:property name="SASentryAny2" />
</appinfo>
</annotation>
</xsd:any>
</sequence>
<element name="SASsample" minOccurs="0" maxOccurs="unbounded" />
<element name="SASinstrument" minOccurs="0" maxOccurs="unbounded" />
<element name="SASprocess" minOccurs="0" maxOccurs="unbounded" />
<element name="SASnote" minOccurs="0" maxOccurs="unbounded" />
<!-- SASnote is a free-form element.
Do not define any content for it or it will become restrictive.
-->
<xsd:any minOccurs="0" maxOccurs="unbounded" processContents="lax" namespace="##other" />
</xsd:choice>
<attribute name="name" type="string" use="optional" default="" />
</complexType>

Expand Down

0 comments on commit b661ffd

Please sign in to comment.