-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from spapa013/main
v0.0.3 - adds register_bases and adds datajoint_plus to virtual_modules
- Loading branch information
Showing
7 changed files
with
46 additions
and
23 deletions.
There are no files selected for viewing
6 changes: 4 additions & 2 deletions
6
python/microns-coregistration-api/microns_coregistration_api/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
from microns_utils import version_utils | ||
|
||
__version__ = version_utils.get_package_version( | ||
__version__ = version_utils.check_package_version( | ||
package='microns-coregistration-api', | ||
check_if_latest=True, | ||
check_if_latest_kwargs=dict( | ||
owner='cajal', | ||
repo='microns-coregistration', | ||
source='tag', | ||
) | ||
) | ||
) | ||
|
||
check_latest_version_from_github = version_utils.latest_github_version_checker(owner='cajal', repo='microns-coregistration') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
""" | ||
Adapters for DataJoint tables. | ||
""" |
3 changes: 3 additions & 0 deletions
3
python/microns-coregistration-api/microns_coregistration_api/config/bases.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
""" | ||
Base classes for DataJoint tables. | ||
""" |
4 changes: 4 additions & 0 deletions
4
python/microns-coregistration-api/microns_coregistration_api/config/externals.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
""" | ||
Externals for DataJoint tables. | ||
""" | ||
|
||
from pathlib import Path | ||
from microns_utils import config_utils | ||
|
||
|
6 changes: 4 additions & 2 deletions
6
python/microns-coregistration/microns_coregistration/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
from microns_utils import version_utils | ||
|
||
__version__ = version_utils.get_package_version( | ||
__version__ = version_utils.check_package_version( | ||
package='microns-coregistration', | ||
check_if_latest=True, | ||
check_if_latest_kwargs=dict( | ||
owner='cajal', | ||
repo='microns-coregistration', | ||
source='tag', | ||
) | ||
) | ||
) | ||
|
||
check_latest_version_from_github = version_utils.latest_github_version_checker(owner='cajal', repo='microns-coregistration') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.0.2" | ||
__version__ = "0.0.3" |