Skip to content

Commit 956fa27

Browse files
committed
Rename jobs_v2.py to jobs.py
Now that the legacy schema-wide jobs system has been removed, rename the new per-table jobs module to its canonical name: - src/datajoint/jobs_v2.py -> src/datajoint/jobs.py - tests/test_jobs_v2.py -> tests/test_jobs.py - Update imports in autopopulate.py and test_jobs.py
1 parent 0f98b18 commit 956fa27

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/datajoint/autopopulate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def jobs(self):
171171
:return: JobsTable instance for this table
172172
"""
173173
if self._jobs_table is None:
174-
from .jobs_v2 import JobsTable
174+
from .jobs import JobsTable
175175

176176
self._jobs_table = JobsTable(self.target)
177177
return self._jobs_table
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import string
77

88
import datajoint as dj
9-
from datajoint.jobs_v2 import JobsTable, ERROR_MESSAGE_LENGTH, TRUNCATION_APPENDIX
9+
from datajoint.jobs import JobsTable, ERROR_MESSAGE_LENGTH, TRUNCATION_APPENDIX
1010

1111
from . import schema
1212

0 commit comments

Comments
 (0)