Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove hdmf-docutils as an installation dependency #6

Merged
merged 1 commit into from
Jan 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
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.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
author = 'Ryan Ly, Ben Dichter, Alexander Mathis'

# The short X.Y version
version = '0.1.0'
version = '0.1.1'

# The full version, including alpha/beta/rc tags
release = '0.1.0'
release = '0.1.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions requirements-dev.txt
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
1 change: 0 additions & 1 deletion requirements.txt
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
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setup_args = {
'name': 'ndx-pose',
'version': '0.1.0',
'version': '0.1.1',
'description': 'NWB extension to store pose estimation data',
'long_description': readme,
'long_description_content_type': readme_type,
Expand All @@ -33,7 +33,6 @@
'install_requires': [
'pynwb>=1.5.0,<3',
'hdmf>=2.5.6,<4',
'hdmf-docutils>=0.4.4,<1'
],
'packages': find_packages('src/pynwb', exclude=["tests", "tests.*"]),
'package_dir': {'': 'src/pynwb'},
Expand Down
2 changes: 1 addition & 1 deletion spec/ndx-pose.namespace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ namespaces:
- SpatialSeries
- NWBDataInterface
- source: ndx-pose.extensions.yaml
version: 0.1.0
version: 0.1.1
3 changes: 2 additions & 1 deletion src/spec/create_extension_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=['rly@lbl.gov', 'bdichter@lbl.gov', 'alexander.mathis@epfl.ch'],
)
Expand Down Expand Up @@ -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__":
Expand Down