Skip to content

Commit a27200d

Browse files
authored
Prepare for release of PyNWB 2.0 (#1394)
1 parent 5276fb6 commit a27200d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
- Added thumbnails for tutorials to improve presentation of online docs. @oruebel (#1349)
3434
- Used `sphinx.ext.extlinks` extension in docs to simplify linking to common targets. @oruebel (#1349)
3535
- Created new section for advanced I/O tutorials and moved parallel I/O tutorial to its own file. @oruebel (#1349)
36+
- Overhauled documentation on extensions. @bendichter, @rly, @oruebel (#1350)
3637
- Updated the optical physiology / Calcium imaging tutorial. @bendichter, @weiglszonja (#1375)
3738
- Added a tutorial on streaming using the ROS3 driver. @rly (#1393)
3839

@@ -43,6 +44,7 @@
4344
for tests and tutorials. @oruebel (#1349, #1383)
4445
- Added on-push and nightly tests of streaming using the ROS3 driver. @rly (#1393)
4546
- These tests make use of a new dandiset for testing the API: https://gui.dandiarchive.org/#/dandiset/000126
47+
- Improve documentation and test for ``CorrectedImageStack``, ``MotionCorrection``. @rly, @bendichter (#1306, #1374)
4648

4749
### Bug fixes:
4850
- Updated behavior of ``make clean`` command for docs to ensure tutorial files are cleaned up. @oruebel (#1349)

tests/integration/ros3/test_ros3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class TestRos3Streaming(TestCase):
88
def test_read(self):
99
s3_path = 'https://dandiarchive.s3.amazonaws.com/ros3test.nwb'
1010

11-
with NWBHDF5IO(s3_path, mode='r', load_namespaces=True, driver='ros3') as io:
11+
with NWBHDF5IO(s3_path, mode='r', driver='ros3') as io:
1212
nwbfile = io.read()
1313
test_data = nwbfile.acquisition['ts_name'].data[:]
1414
self.assertEqual(len(test_data), 3)
@@ -17,7 +17,7 @@ def test_dandi_read(self):
1717
# this is the NWB Test Data dandiset #000126 sub-1/sub-1.nwb
1818
s3_path = 'https://dandiarchive.s3.amazonaws.com/blobs/11e/c89/11ec8933-1456-4942-922b-94e5878bb991'
1919

20-
with NWBHDF5IO(s3_path, mode='r', load_namespaces=True, driver='ros3') as io:
20+
with NWBHDF5IO(s3_path, mode='r', driver='ros3') as io:
2121
nwbfile = io.read()
2222
test_data = nwbfile.acquisition['TestData'].data[:]
2323
self.assertEqual(len(test_data), 3)

0 commit comments

Comments
 (0)