Skip to content
Merged
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
8 changes: 4 additions & 4 deletions src/datajoint/migrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

.. note::
This module is provided temporarily to assist with migration from pre-2.0.
It will be deprecated in DataJoint 2.1 and removed in 2.3.
Complete your migrations while on DataJoint 2.0.
It is scheduled for removal in DataJoint 2.4 or 2.5.
Complete your migrations while on DataJoint 2.3 or earlier.

Note on Terminology
-------------------
Expand All @@ -32,8 +32,8 @@
# Show deprecation warning starting in 2.1
if Version(__version__) >= Version("2.1"):
warnings.warn(
"datajoint.migrate is deprecated and will be removed in DataJoint 2.3. "
"Complete your schema migrations before upgrading.",
"datajoint.migrate is deprecated and is scheduled for removal in DataJoint 2.4 or 2.5. "
"Complete your schema migrations while on DataJoint 2.3 or earlier.",
DeprecationWarning,
stacklevel=2,
)
Expand Down
Loading