-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump to new ome-types * updating things for ome_types=0.4.0 * first try at merge projects, stubs for others * only missing find_dataset * first pass at merge, find_dataset needs reviewing * now resolving dataset refs to actual datasets * basic merge functionality working * added basic prepare metadata * doing clever image matching (again?) considering annotations * tests passing - made `conn` optional on `make_image_map` * merge tests passing, some extra minor fixes - merging orphaned datasets - using `isInstance` instead of `type` * updated readme and setup.py
- Loading branch information
1 parent
2f3c319
commit 581996c
Showing
11 changed files
with
255 additions
and
67 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -131,3 +131,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# vs code settings | ||
.vscode/ |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
ezomero>=2.0.0 | ||
ome-types>=0.3.4 | ||
ome-types>=0.4.0 | ||
setuptools>=58.0.0 |
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 |
---|---|---|
|
@@ -84,7 +84,7 @@ def read(fname): | |
packages=['', 'omero.plugins'], | ||
package_dir={"": "src"}, | ||
name="omero-cli-transfer", | ||
version='0.6.0', | ||
version='0.7.0', | ||
maintainer="Erick Ratamero", | ||
maintainer_email="[email protected]", | ||
description=("A set of utilities for exporting a transfer" | ||
|
@@ -96,7 +96,7 @@ def read(fname): | |
url="https://github.com/TheJacksonLaboratory/omero-cli-transfer", | ||
install_requires=[ | ||
'ezomero==2.0.0', | ||
'ome-types==0.3.4' | ||
'ome-types==0.4.0' | ||
], | ||
extras_require={ | ||
"rocrate": ["rocrate==0.7.0"], | ||
|
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
Oops, something went wrong.