cellprofiler-core-nightly 5.0.0.dev267__py3-none-any.whl → 5.0.0.dev281__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cellprofiler_core/_version.py +2 -2
- cellprofiler_core/setting/_setting.py +5 -1
- {cellprofiler_core_nightly-5.0.0.dev267.dist-info → cellprofiler_core_nightly-5.0.0.dev281.dist-info}/METADATA +1 -1
- {cellprofiler_core_nightly-5.0.0.dev267.dist-info → cellprofiler_core_nightly-5.0.0.dev281.dist-info}/RECORD +7 -7
- {cellprofiler_core_nightly-5.0.0.dev267.dist-info → cellprofiler_core_nightly-5.0.0.dev281.dist-info}/WHEEL +0 -0
- {cellprofiler_core_nightly-5.0.0.dev267.dist-info → cellprofiler_core_nightly-5.0.0.dev281.dist-info}/licenses/LICENSE +0 -0
- {cellprofiler_core_nightly-5.0.0.dev267.dist-info → cellprofiler_core_nightly-5.0.0.dev281.dist-info}/top_level.txt +0 -0
cellprofiler_core/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '5.0.0.
|
|
32
|
-
__version_tuple__ = version_tuple = (5, 0, 0, '
|
|
31
|
+
__version__ = version = '5.0.0.dev281'
|
|
32
|
+
__version_tuple__ = version_tuple = (5, 0, 0, 'dev281')
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import abc
|
|
2
2
|
import uuid
|
|
3
|
-
|
|
3
|
+
from enum import Enum
|
|
4
4
|
from ._validation_error import ValidationError
|
|
5
5
|
|
|
6
6
|
|
|
@@ -108,6 +108,8 @@ class Setting(abc.ABC):
|
|
|
108
108
|
# their .values are the same.
|
|
109
109
|
if isinstance(x, Setting):
|
|
110
110
|
return self.__key == x.__key
|
|
111
|
+
if isinstance(x, Enum):
|
|
112
|
+
return self.__value == x.value
|
|
111
113
|
return self.eq(x)
|
|
112
114
|
|
|
113
115
|
def eq(self, x):
|
|
@@ -169,4 +171,6 @@ class Setting(abc.ABC):
|
|
|
169
171
|
return self.get_unicode_value()
|
|
170
172
|
|
|
171
173
|
def get_unicode_value(self):
|
|
174
|
+
if isinstance(self.__value, Enum):
|
|
175
|
+
return self.__value.value
|
|
172
176
|
return str(self.value_text)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cellprofiler-core-nightly
|
|
3
|
-
Version: 5.0.0.
|
|
3
|
+
Version: 5.0.0.dev281
|
|
4
4
|
Summary: cellprofiler-core implements the bulk of CellProfiler's non-gui functionality
|
|
5
5
|
Author: Anne Carpenter, Thouis (Ray) Jones, Lee Kamentsky, Vebjorn Ljosa, David Logan, Mark Bray, Madison Swain-Bowden, Allen Goodman, Claire McQuinn, Alice Lucas, Callum Tromans-Coia
|
|
6
6
|
Author-email: Beth Cimini <bcimini@broadinstitute.org>, David Stirling <dstirling@glencoesoftware.com>, Nodar Gogoberidze <ngogober@broadinstitute.org>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
cellprofiler_core/__init__.py,sha256=_3kgQS8726Qn6s5G3k9qO5lP70iGHpCjCfN8WOZUmOY,51
|
|
2
2
|
cellprofiler_core/__main__.py,sha256=TA41EatBuwAZ4DhfTnq8sJJzxdov9fBN_j7g9hvMJeo,1221
|
|
3
|
-
cellprofiler_core/_version.py,sha256=
|
|
3
|
+
cellprofiler_core/_version.py,sha256=9KbQdnITYC4miZlBvzwgKS3ZsWylam2ViLqrFa8SIu8,721
|
|
4
4
|
cellprofiler_core/analysis/__init__.py,sha256=3q_bxjv7sGtXWFGULDj1AB3Ntx7A3HPctk_sr6gL6Wo,694
|
|
5
5
|
cellprofiler_core/analysis/_analysis.py,sha256=sKKK91ov5T1OuYaejvX8rM_Uk-2ggbkAPRji3cuL3SM,4259
|
|
6
6
|
cellprofiler_core/analysis/_runner.py,sha256=UAV_In9l6RXzud0qWG-uDPPi8-WTydhDEgqMGeOWT5w,31610
|
|
@@ -176,7 +176,7 @@ cellprofiler_core/setting/_joiner.py,sha256=qagEfXYn2Qfj92ImzyfztkWgLXWAmIBmICzU
|
|
|
176
176
|
cellprofiler_core/setting/_measurement.py,sha256=Ms2H9Q9ptRl_tjQowHnVFXRVM8-CLPJzjTPQtfqahZU,13419
|
|
177
177
|
cellprofiler_core/setting/_path_list_display.py,sha256=nh_TWwOjYJiq9zzvAwp4gndXePgAmDOnxxoFS9RfR2s,471
|
|
178
178
|
cellprofiler_core/setting/_regexp_text.py,sha256=1NAWQQ745zu9OkJWwllU4-5BAo4Yqc1rho1HtWUXjDM,1334
|
|
179
|
-
cellprofiler_core/setting/_setting.py,sha256=
|
|
179
|
+
cellprofiler_core/setting/_setting.py,sha256=xlGjXn0lrtoCHnovber_SyY2zuL95oGn4wJALz0rrgE,5754
|
|
180
180
|
cellprofiler_core/setting/_settings_group.py,sha256=MWCp2A1N7Lzxo6bIpFCd0mJMjaEZYGCK3w8HpSq3XHo,1127
|
|
181
181
|
cellprofiler_core/setting/_structuring_element.py,sha256=tv0fHRDvkY55A54ZISA9FpoXAOFAbSCQ7RGrfqA8oBQ,2502
|
|
182
182
|
cellprofiler_core/setting/_table.py,sha256=i4y0hoTSIkxw-9hrZb_EGAN68EK6Dg3KSe7qmPaD1iQ,5709
|
|
@@ -305,8 +305,8 @@ cellprofiler_core/worker/_worker.py,sha256=-DGKaU8J91OrQvjoPdLqHPhmtXznIoxK2oxQP
|
|
|
305
305
|
cellprofiler_core/workspace/__init__.py,sha256=_J7VJAGoTcSYMt5YB_Ol_JZJXkSj1shvUZpIqN4B6ew,98
|
|
306
306
|
cellprofiler_core/workspace/_disposition_changed_event.py,sha256=7l2ewpHRhv0ErQvwGi7ifb9MZOX2iwvS-ttRmZpZP9Q,107
|
|
307
307
|
cellprofiler_core/workspace/_workspace.py,sha256=GdnVgpnk3UL71qoKm8xvjuss6QvZ2t_K0xE8X0EqHLc,21602
|
|
308
|
-
cellprofiler_core_nightly-5.0.0.
|
|
309
|
-
cellprofiler_core_nightly-5.0.0.
|
|
310
|
-
cellprofiler_core_nightly-5.0.0.
|
|
311
|
-
cellprofiler_core_nightly-5.0.0.
|
|
312
|
-
cellprofiler_core_nightly-5.0.0.
|
|
308
|
+
cellprofiler_core_nightly-5.0.0.dev281.dist-info/licenses/LICENSE,sha256=QLWaBS7kAioYx7PmJNXAMJaY8NODcFAag60YlUWuyz0,2276
|
|
309
|
+
cellprofiler_core_nightly-5.0.0.dev281.dist-info/METADATA,sha256=N1QquJkSQRMI0VSguHfaKJXRZAsBmzu5wPVdy21BZto,5892
|
|
310
|
+
cellprofiler_core_nightly-5.0.0.dev281.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
311
|
+
cellprofiler_core_nightly-5.0.0.dev281.dist-info/top_level.txt,sha256=Cyr_eRUfEUpSmpsWAZAZGBqgRcpgnNrvD5DmkMDmCQk,18
|
|
312
|
+
cellprofiler_core_nightly-5.0.0.dev281.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|