Skip to content

Commit ae3fddf

Browse files
docs: fix broken documentation links
Update outdated docs.datajoint.com URLs to new paths: - diagram.py: /how-to/installation/ - heading.py: /how-to/migrate-from-0x/ - expression.py: /how-to/migrate-from-0x/ Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 8e3d12f commit ae3fddf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/datajoint/diagram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Diagram:
4848
4949
See Also
5050
--------
51-
https://docs.datajoint.com/core/datajoint-python/0.14/client/install/
51+
https://docs.datajoint.com/how-to/installation/
5252
"""
5353

5454
def __init__(self, *args, **kwargs) -> None:

src/datajoint/expression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ def fetch(self):
596596
597597
For single-row fetch, use fetch1() which is unchanged.
598598
599-
See migration guide: https://docs.datajoint.com/migration/fetch-api
599+
See migration guide: https://docs.datajoint.com/how-to/migrate-from-0x/
600600
"""
601601
raise AttributeError(
602602
"fetch() has been removed in DataJoint 2.0. "

src/datajoint/heading.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,8 +466,8 @@ def _init_from_database(self) -> None:
466466
except StopIteration:
467467
if original_type.startswith("external"):
468468
raise DataJointError(
469-
f"Legacy datatype `{original_type}`. Migrate your external stores to datajoint 0.12: "
470-
"https://docs.datajoint.io/python/admin/5-blob-config.html#migration-between-datajoint-v0-11-and-v0-12"
469+
f"Legacy datatype `{original_type}`. See migration guide: "
470+
"https://docs.datajoint.com/how-to/migrate-from-0x/"
471471
)
472472
# Not a special type - that's fine, could be native passthrough
473473
category = None

0 commit comments

Comments
 (0)