compose-runner 0.6.4rc1__py2.py3-none-any.whl → 0.6.5__py2.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.
@@ -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 = '0.6.4rc1'
32
- __version_tuple__ = version_tuple = (0, 6, 4, 'rc1')
31
+ __version__ = version = '0.6.5'
32
+ __version_tuple__ = version_tuple = (0, 6, 5)
33
33
 
34
34
  __commit_id__ = commit_id = None
compose_runner/run.py CHANGED
@@ -198,6 +198,10 @@ class Runner:
198
198
  weights = self.cached_specification.get("weights", [])
199
199
  weight_conditions = {w: c for c, w in zip(conditions, weights)}
200
200
 
201
+ # since we added "order" to annotations
202
+ if isinstance(column_type, dict):
203
+ column_type = column_type.get("type")
204
+
201
205
  if not (conditions or weights) and column_type != "boolean":
202
206
  raise ValueError(
203
207
  f"Column type {column_type} requires a conditions and weights."
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: compose-runner
3
- Version: 0.6.4rc1
3
+ Version: 0.6.5
4
4
  Summary: A package for running neurosynth-compose analyses
5
5
  Project-URL: Repository, https://github.com/neurostuff/compose-runner
6
6
  Author-email: James Kent <jamesdkent21@gmail.com>
@@ -1,8 +1,8 @@
1
1
  compose_runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- compose_runner/_version.py,sha256=jh9xfbKA06VsDeDHwVjKWWJSjT7budydFj-4rgqpW7M,714
2
+ compose_runner/_version.py,sha256=vZ5ByTim8KR6_poyIQDV3NcOKhDQLV8ERGfgEnBc8HQ,704
3
3
  compose_runner/cli.py,sha256=1tkxFgEe8Yk7VkzE8qxGmCGqLU7UbGin2VaP0AiZkVg,1101
4
4
  compose_runner/ecs_task.py,sha256=15CyLsaf2xrvWM-gGPDOXj_Hq8eJJPiH7xyRas93zn0,5352
5
- compose_runner/run.py,sha256=yIh8Fj8dfVKvahRl483qGOsDUoAS1FdsYrKZp_HknGo,18525
5
+ compose_runner/run.py,sha256=wNAm8_fKoBJElMVlY7GTODqjZJG8S6y8K-QCUljL6Ko,18666
6
6
  compose_runner/sentry.py,sha256=pjqwsZrXrKB0cCy-TL-_2eYJIqUU0aV-8e0SWUk-9Xw,320
7
7
  compose_runner/aws_lambda/__init__.py,sha256=yZNXXv7gCPSrtLCEX5Qf4cnzSTS3fHPV6k-SyZwiZIA,48
8
8
  compose_runner/aws_lambda/common.py,sha256=cA2G5lO4P8uVBqJaYcU6Y3P3t3syoTmk4SpLKZhAFo8,1688
@@ -22,8 +22,8 @@ compose_runner/tests/cassettes/test_run/test_run_database_workflow.yaml,sha256=a
22
22
  compose_runner/tests/cassettes/test_run/test_run_group_comparison_workflow.yaml,sha256=FaZpMdcaM7TMgyueyZBGftm6ywUh1HhtGmCegXUmRFA,4029712
23
23
  compose_runner/tests/cassettes/test_run/test_run_string_group_comparison_workflow.yaml,sha256=pcn6tQwrimhDtP8yJ3jFlsfEOnk8FWybYQr9IQ5A_KA,3233839
24
24
  compose_runner/tests/cassettes/test_run/test_run_workflow.yaml,sha256=0Nk7eJWAmgYALG2ODrezbRhpYsc00JiuYVjXt3TUm5c,3857234
25
- compose_runner-0.6.4rc1.dist-info/METADATA,sha256=XcUqv6A8lHXIOh_xQSMHTnl6HnnXUfd09kNpVZMJaaQ,3435
26
- compose_runner-0.6.4rc1.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
27
- compose_runner-0.6.4rc1.dist-info/entry_points.txt,sha256=TyPmB9o2tSWw8L3mcach9r2EL7inRVXE9ew3_XReMIY,55
28
- compose_runner-0.6.4rc1.dist-info/licenses/LICENSE,sha256=PeiWxrrRme2rIpPMV9vjgGe7UHEKCIcTb0KagYhnyqo,1313
29
- compose_runner-0.6.4rc1.dist-info/RECORD,,
25
+ compose_runner-0.6.5.dist-info/METADATA,sha256=66ogvMaBBgpK_ITxJ2qeLwmlMffmliIVFTUOUW8QHfI,3432
26
+ compose_runner-0.6.5.dist-info/WHEEL,sha256=aha0VrrYvgDJ3Xxl3db_g_MDIW-ZexDdrc_m-Hk8YY4,105
27
+ compose_runner-0.6.5.dist-info/entry_points.txt,sha256=TyPmB9o2tSWw8L3mcach9r2EL7inRVXE9ew3_XReMIY,55
28
+ compose_runner-0.6.5.dist-info/licenses/LICENSE,sha256=PeiWxrrRme2rIpPMV9vjgGe7UHEKCIcTb0KagYhnyqo,1313
29
+ compose_runner-0.6.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: hatchling 1.28.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any