-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #701 from hed-standard/master
Prepare for release 0.3.0
- Loading branch information
Showing
224 changed files
with
61,058 additions
and
5,702 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Spec_tests | ||
|
||
on: | ||
push: | ||
branches: ["*"] | ||
pull_request: | ||
branches: ["*"] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
platform: [ubuntu-latest] | ||
python-version: [3.9] | ||
|
||
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- name: Checkout hed-python | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade --upgrade-strategy eager pip | ||
pip install -r requirements.txt | ||
- name: Test with unittest | ||
run: | | ||
python -m unittest spec_tests/test_errors.py > test_results.txt | ||
- name: Upload spec test results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: spec-test-results | ||
path: test_results.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "spec_tests/hed-specification"] | ||
path = spec_tests/hed-specification | ||
url = https://github.com/hed-standard/hed-specification/ | ||
branch = develop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
defusedxml>=0.7.1 | ||
inflect>=5.5.1 | ||
inflect>=6.0.2 | ||
myst-parser>=0.18.1 | ||
openpyxl>=3.0.9 | ||
numpy>=1.21.6 | ||
openpyxl>=3.1.0 | ||
pandas>=1.3.5 | ||
portalocker>=2.4.0 | ||
semantic_version>=2.9.0 | ||
portalocker>=2.7.0 | ||
semantic_version>=2.10.0 | ||
Sphinx>=5.2.2 | ||
sphinx_rtd_theme>=1.0.0 | ||
|
||
# This is just needed for secure_filename and should probably be removed | ||
Werkzeug>=2.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
HED API reference (Auto style) | ||
======================== | ||
============================== | ||
|
||
.. currentmodule:: hed | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from .error_reporter import ErrorHandler, get_exception_issue_string, get_printable_issue_string | ||
from .error_types import DefinitionErrors, OnsetErrors, SchemaErrors, SchemaWarnings, SidecarErrors, ValidationErrors | ||
from .error_reporter import ErrorHandler, get_printable_issue_string, sort_issues | ||
from .error_types import DefinitionErrors, OnsetErrors, SchemaErrors, SchemaWarnings, SidecarErrors, \ | ||
ValidationErrors, ColumnErrors | ||
from .error_types import ErrorContext, ErrorSeverity | ||
from .exceptions import HedExceptions, HedFileError |
Oops, something went wrong.