Skip to content

Commit 1a4103a

Browse files
Merge branch 'master' into s3_chunked
2 parents d50fce2 + 4b1e129 commit 1a4103a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- Changed - Readme to update links and include example pipeline image
77
- Changed - Docs to add landing page and update navigation
88
- Changed - `.data` method to `.stream` in the `get()` method for S3 (external) objects PR [#1085](https://github.com/datajoint/datajoint-python/pull/1085)
9+
- Fixed - Docs to rename `create_virtual_module` to `VirtualModule`
910

1011
### 0.14.0 -- Feb 13, 2023
1112
- Added - `json` data type ([#245](https://github.com/datajoint/datajoint-python/issues/245)) PR [#1051](https://github.com/datajoint/datajoint-python/pull/1051)

docs/src/concepts/existing-pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ the `VirtualModule` class object:
6363

6464
```python
6565
import datajoint as dj
66-
subject = dj.create_virtual_module(module_name='subject', schema_name='db_subject')
66+
subject = dj.VirtualModule(module_name='subject', schema_name='db_subject')
6767
```
6868

6969
Now, `subject` behaves as an imported module complete with the schema object and all the

0 commit comments

Comments
 (0)