Skip to content

Commit

Permalink
Adding upper limit to hdmf version, newest version breaks pynwb (#2099)
Browse files Browse the repository at this point in the history
Adding upper limit to hdmf version, newest version breaks our tests with pynwb.
  • Loading branch information
Matyasz authored Apr 23, 2021
1 parent 0827751 commit d55332a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
All notable changes to this project will be documented in this file.

## [2.10.3] = 2021-04-23
- Adds restriction to require hdmf version to be strictly less than 2.5.0 which accidentally introduced a major version breaking change

## [2.10.2] = 2021-03-25
- This version marks the release of Visual Behavior Optical Physiology data! For more details please visit the: [Visual Behavior - Optical Physiology Project Page](https://allensdk.readthedocs.io/en/latest/visual_behavior_optical_physiology.html)
- update documentation to support visual behavior data release
Expand Down
2 changes: 1 addition & 1 deletion allensdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#
import logging

__version__ = '2.10.2'
__version__ = '2.10.3'


try:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ def convert_strings_to_lists(df, is_session=True):
.apply(lambda x: literal_eval(x))


@pytest.mark.xfail(reason="Disabling to push out a bugfix. "
"Please re-enable in rc/2.11.0.")
@pytest.mark.requires_bamboo
def test_metadata():
release_date = '2021-03-25'
Expand Down
5 changes: 5 additions & 0 deletions doc_template/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ The Allen SDK provides Python code for accessing experimental metadata along wit
See the `mouse connectivity section <connectivity.html>`_ for more details.


What's New - 2.10.3
-----------------------------------------------------------------------
- Adds restriction to require hdmf version to be strictly less than 2.5.0 which accidentally introduced a major version breaking change


What's New - 2.10.2
-----------------------------------------------------------------------
- This version marks the release of Visual Behavior Optical Physiology data! For more details please visit the: `Visual Behavior - Optical Physiology Project Page <https://allensdk.readthedocs.io/en/latest/visual_behavior_optical_physiology.html>`_
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
psycopg2-binary>=2.7,<3.0.0
hdmf<2.5.0
h5py>=2.8,<3.0.0
matplotlib>=1.4.3,<4.0.0
numpy>=1.15.4,<1.19.0
Expand Down

0 comments on commit d55332a

Please sign in to comment.