-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove hdmf-docutils as an installation dependency (#6)
- Loading branch information
Showing
7 changed files
with
20 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# ndx-pose Changelog | ||
|
||
## ndx-pose 0.1.1 (January 26, 2022) | ||
|
||
The schema is unchanged, but the Python package has been updated. | ||
|
||
### Bug fix | ||
- Remove hdmf-docutils as an installation dependency. @rly (#6) | ||
|
||
## ndx-pose 0.1.0 (January 26, 2022) | ||
|
||
Initial release including `PoseEstimation` and `PoseEstimationSeries` neurodata types. |
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,3 +1,5 @@ | ||
# pinned dependencies to reproduce an entire development environment to run tests and check code style | ||
flake8==4.0.1 | ||
pytest==6.2.5 | ||
pytest-subtests==0.6.0 | ||
hdmf-docutils==0.4.4 |
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,3 @@ | ||
# pinned dependencies to reproduce a working development environment | ||
hdmf_docutils==0.4.4 | ||
hdmf==3.1.1 | ||
pynwb==2.0.0 |
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 |
---|---|---|
|
@@ -15,4 +15,4 @@ namespaces: | |
- SpatialSeries | ||
- NWBDataInterface | ||
- source: ndx-pose.extensions.yaml | ||
version: 0.1.0 | ||
version: 0.1.1 |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ def main(): | |
ns_builder = NWBNamespaceBuilder( | ||
doc='NWB extension to store pose estimation data', | ||
name='ndx-pose', | ||
version='0.1.0', | ||
version='0.1.1', | ||
author=['Ryan Ly', 'Ben Dichter', 'Alexander Mathis'], | ||
contact=['[email protected]', '[email protected]', '[email protected]'], | ||
) | ||
|
@@ -157,6 +157,7 @@ def main(): | |
# export the spec to yaml files in the spec folder | ||
output_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', 'spec')) | ||
export_spec(ns_builder, new_data_types, output_dir) | ||
print('Spec files generated. Please make sure to rerun `pip install .` to load the changes.') | ||
|
||
|
||
if __name__ == "__main__": | ||
|