Skip to content

Commit

Permalink
Change reference to main and make build date optional
Browse files Browse the repository at this point in the history
Signed-off-by: hoangtungdinh <[email protected]>
  • Loading branch information
hoangtungdinh committed Sep 30, 2024
1 parent d9b0540 commit 2026596
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ content:
</Config>
```

For more information regarding the configuration XSD schema you can check [here](https://github.com/asam-ev/qc-framework/blob/develop/doc/schema/config_format.xsd)
For more information regarding the configuration XSD schema you can check [here](https://github.com/asam-ev/qc-framework/blob/main/doc/schema/config_format.xsd)

### Reading checker bundle config from file

Expand Down Expand Up @@ -242,7 +242,7 @@ content:

```

For more information regarding the result XSD schema you can check [here](https://github.com/asam-ev/qc-framework/blob/develop/doc/schema/xqar_result_format.xsd)
For more information regarding the result XSD schema you can check [here](https://github.com/asam-ev/qc-framework/blob/main/doc/schema/xqar_result_format.xsd)

### Reading a result from checker bundle execution

Expand Down
2 changes: 1 addition & 1 deletion examples/json_validator/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
asam-qc-baselib @ git+https://github.com/asam-ev/qc-baselib-py@develop
asam-qc-baselib @ git+https://github.com/asam-ev/qc-baselib-py@main
2 changes: 1 addition & 1 deletion examples/report_module_text/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
qc_baselib @ git+https://github.com/asam-ev/qc-baselib-py@develop
qc_baselib @ git+https://github.com/asam-ev/qc-baselib-py@main
lxml==5.2.2
numpy==2.0.0
scipy==1.14.0
2 changes: 1 addition & 1 deletion qc_baselib/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Configuration:
```
For more information regarding the configuration XSD schema you can check
[here](https://github.com/asam-ev/qc-framework/blob/develop/doc/schema/config_format.xsd).
[here](https://github.com/asam-ev/qc-framework/blob/main/doc/schema/config_format.xsd).
"""

Expand Down
2 changes: 1 addition & 1 deletion qc_baselib/models/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# Configuration models
# Original XSD file:
# > https://github.com/asam-ev/qc-framework/blob/develop/doc/schema/config_format.xsd
# > https://github.com/asam-ev/qc-framework/blob/main/doc/schema/config_format.xsd


class CheckerType(BaseXmlModel):
Expand Down
2 changes: 1 addition & 1 deletion qc_baselib/models/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

# Report models
# Original XSD file:
# > https://github.com/asam-ev/qc-framework/blob/develop/doc/schema/xqar_report_format.xsd
# > https://github.com/asam-ev/qc-framework/blob/main/doc/schema/xqar_report_format.xsd


class XMLLocationType(BaseXmlModel):
Expand Down
2 changes: 1 addition & 1 deletion qc_baselib/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class Result:
```
For more information regarding the results report XSD schema you can check
[here](https://github.com/asam-ev/qc-framework/blob/develop/doc/schema/xqar_report_format.xsd)
[here](https://github.com/asam-ev/qc-framework/blob/main/doc/schema/xqar_report_format.xsd)
"""

Expand Down

0 comments on commit 2026596

Please sign in to comment.